我有一个现有的代码段使用scipy.misc
imref = misc.imread(self.file_image, False, "RGB")
如果我想用imageio替换它,怎么做,我可以使用
imref = imageio.imread(self.file_image, False).
我不清楚在使用"RGB"
时设置imageio.imread
参数的位置。
答案 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”?