我在Ubuntu OS上为Python编写了一些代码。我已经将用于打开.png图像的操作系统默认程序设置为ImageJ。但是,当我尝试在Python中打开图像时,它会使用操作系统附带的查看器打开它。 也就是说,我用来显示图像的示例代码是:
import os
from scipy import misc
path = os.path.abspath(os.path.dirname(__file__))
image = misc.imread(path + "/Lena.png")
misc.imshow (image)
我想知道如何使用ImageJ在Python中自动打开图像。
谢谢大家。