我正在尝试在 Eclipse 中使用 PIL。我已设法安装以下软件包,以便此代码可以正常运行:
from PIL import Image
import os
from pylab import *
from scipy.misc import *
im = array(Image.open('empire.jpg').convert('L'))
但是,以下内容:
imshow(im)
产生错误:
raise RuntimeError('Could not execute image viewer.')
RuntimeError: Could not execute image viewer.
我尝试从 Eclipse Marketplace 安装基本的 Image Viewer。它不能解决问题。
有人知道如何让 Eclipse 显示图像吗?
提前致谢。