如何在使用imageio时将图像打开为rgb文件

时间:2018-04-06 22:09:20

标签: python image-processing scipy python-imageio

我有一个现有的代码段使用scipy.misc

读取图像
imref = misc.imread(self.file_image, False, "RGB")

如果我想用imageio替换它,怎么做,我可以使用

imref = imageio.imread(self.file_image, False). 

我不清楚在使用"RGB"时设置imageio.imread参数的位置。

2 个答案:

答案 0 :(得分:4)

正如docs中所述,您可以使用关键字参数pilmode来指定模态,而scipy flatten则替换为as_gray。所以在你的情况下:

imref = imageio.imread(self.file_image, as_gray=False, pilmode="RGB")

答案 1 :(得分:0)

如果您收到错误怎么办:“Imageio Pillow插件需要Pillow lib”?