到目前为止,当我阅读并在Python中显示图像时:
from scipy import misc
img = misc.imread("myimage.png")
misc.imshow(img)
它通过使用ImageMagick打开它。
如何将ImageMagick的阅读器更改为Image Viewer? 我想我应该改变Python环境,但我没有任何进一步的线索。
答案 0 :(得分:3)
misc.imshow
的文档字符串
In [10]: misc.imshow?
Signature: misc.imshow(arr)
Docstring:
Simple showing of an image through an external viewer.
Uses the image viewer specified by the environment variable
SCIPY_PIL_IMAGE_VIEWER, or if that is not defined then `see`,
to view a temporary file generated from array data.
因此,请将SCIPY_PIL_IMAGE_VIEWER
环境变量设置为eog
(图像查看器)可执行文件的路径。