如何在 Python 中调整图像数组的大小
How to resize an image array in Python
我是 Python 的新手,我想知道是否有办法调整包含 rgb 图像的数组的大小。
imageA_array[高度1][宽度1][3]
转换为
imageB_array[高度2][宽度2][3]
imageB 生成的图像比 imageA 小(height2
提前致谢。
最简单的方法是为 python
使用 http://scikit-image.org/ 上可用的 scikit-image
库
那么你所要做的就是:
from skimage.transform import resize
imageB_array = resize(imageA_array, (height2, width2), anti_aliasing=True)
我是 Python 的新手,我想知道是否有办法调整包含 rgb 图像的数组的大小。
imageA_array[高度1][宽度1][3]
转换为
imageB_array[高度2][宽度2][3]
imageB 生成的图像比 imageA 小(height2
提前致谢。
最简单的方法是为 python
使用 http://scikit-image.org/ 上可用的scikit-image
库
那么你所要做的就是:
from skimage.transform import resize
imageB_array = resize(imageA_array, (height2, width2), anti_aliasing=True)