如何在Python中更改图像查看器

时间:2017-03-05 11:36:36

标签: python image scipy imshow

到目前为止,当我阅读并在Python中显示图像时:

from scipy import misc
img = misc.imread("myimage.png")
misc.imshow(img)

它通过使用ImageMagick打开它。

如何将ImageMagick的阅读器更改为Image Viewer? 我想我应该改变Python环境,但我没有任何进一步的线索。

1 个答案:

答案 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(图像查看器)可执行文件的路径。