gpt4 book ai didi

python - 在opencv中将png保存为jpg时出现问题

转载 作者:行者123 更新时间:2023-12-02 16:53:20 25 4
gpt4 key购买 nike

我正在运行这段代码并得到错误的结果:

        #saving image into a white bg
img = cv2.imread(dir_img + id, cv2.IMREAD_UNCHANGED)
img = cv2.cvtColor(img, cv2.COLOR_BGRA2BGR)
print(img.shape)
cv2.imwrite(dir_img + id, img, [int(cv2.IMWRITE_JPEG_QUALITY), 100])

enter image description here

原始文件是具有透明背景的 png。我不知道为什么,但是瓶颈后面的灰色图案很省钱。

原始文件:
enter image description here

最佳答案

正如评论中提到的,在这种情况下,简单地移除 alpha channel 并不会移除背景,因为 BGR channel 具有您要移除的伪影,如下所示,当您仅绘制 B、G 或 R channel 时。

B channel

你的 alpha channel 看起来像这样

alpha channel

为了达到你的需要,你需要应用一些矩阵数学来得到你的结果。我在这里附上了代码

import cv2
import matplotlib.pyplot as plt

img_path = r"path/to/image"

#saving image into a white bg
img = cv2.imread(img_path, cv2.IMREAD_UNCHANGED)
plt.imshow(img)
plt.show()
b,g,r, a = cv2.split(img)
print(img.shape)

new_img = cv2.merge((b, g, r))
not_a = cv2.bitwise_not(a)
not_a = cv2.cvtColor(not_a, cv2.COLOR_GRAY2BGR)
plt.imshow(not_a)
plt.show()
new_img = cv2.bitwise_and(new_img,new_img,mask = a)
new_img = cv2.add(new_img, not_a)

cv2.imwrite(output_dir, new_img)
plt.imshow(new_img)
print(new_img.shape)
plt.show()

结果是尺寸为 (1200, 1200, 3) 的图像

enter image description here

关于python - 在opencv中将png保存为jpg时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55244227/

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