gpt4 book ai didi

python - 在 Python 或 PIL 中是否有一种简单的方法来调整/扩展仅包含零的图像大小?

转载 作者:行者123 更新时间:2023-12-01 07:37:29 27 4
gpt4 key购买 nike

我有一张图像,我想将其尺寸调整得更大。但是,PIL 中的 Image.resize 会插入图像(我认为)。我只想扩展此图像并填充零。例如,如果我有一个像这样的小图像:

 1,2,3,4,5 
1,2,3,4,5

如果我想将其水平轴扩展至其大小的两倍,我想要:

 1,0,2,0,3,0,4,5,0
1,0,2,0,3,0,4,5,0

或者类似的其他东西。

另外,这在图像处理中有真正的名称吗?

最佳答案

您可以使用numpy作为:

import numpy as np
import cv2

img = cv2.imread('image.png', 0) #a dummy file

img2 = np.zeros([img.shape[0], 2*img.shape[1]])
img2[0::1, 0::2] = img[0::1, 0::1]

关于python - 在 Python 或 PIL 中是否有一种简单的方法来调整/扩展仅包含零的图像大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56918569/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com