我试图使用 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