Failed to run Python script with Conda

☆樱花仙子☆ 提交于 2019-12-12 09:44:11

问题


I tried to install menpo like 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

Next 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 got this output:

What am I doing wrong and how I can fix it?

回答1:


It seems that visualize_images is meant to be used from ipython-notebook. Calling it in a regular python script does not seem to be intended by the authors.

See also the example in the Visualizing Objects section of the docs:

%matplotlib inline
import menpo.io as mio
from menpo.visualize import visualize_images

# import_images is a generator, so we must exhaust the generator before
# we can visualize the list. This is because the widget allows you to
# jump arbitrarily around the list, which cannot be done with generators.
images = list(mio.import_images('./path/to/images/*.jpg'))
visualize_images(images)


来源:https://stackoverflow.com/questions/28922210/failed-to-run-python-script-with-conda

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!