I tried to install menpo, as in this tutorial . After that, I installed menpofit, menpo3d and menpodetect:
conda install -c menpo menpofit
conda install -c menpo menpo3d
conda install -c menpo menpodetect
Then I ran this python script from CMD (python testPy.py):
import menpo.io as mio
from menpo.visualize import visualize_images
images = list(mio.import_images('A:/img/*.png'))
visualize_images(images)
And I got this conclusion:
What am I doing wrong and how can I fix it?
source
share