将numpy.ndarray转换为imageio.core.util.Image



我试图使用 OpenCV 调整输入图像的大小,但我在将调整大小的 np 数组转换为原始格式时遇到问题。

image = imageio.imread(filename) #<class 'imageio.core.util.Image'>
image_re = cv2.resize(image, (256, 256)) #<class 'numpy.ndarray'>
#convert into <class 'imageio.core.util.Image'> here

提前谢谢。

imageio.core.util.Image只是具有元属性的np.ndarray子类。你为什么要回去?

对你的目标进行一些进一步的解释可能有助于澄清这个问题。

使用以下代码

width = height = 256
dim = (width, height)
file_name = "your file address here"    
image = imageio.imread(file_name )
resized = cv2.resize(image, dim, interpolation = cv2.INTER_AREA)
image2 = imageio.core.util.Array(resized)

您需要使用的是图像2

相关内容

  • 没有找到相关文章

最新更新