如何检查 OpenCV 中的像素是否透明?我有一个带有透明部分的 png 图像,我想将 rgb 图像转换为 hsv,然后改变像素的色调。我需要透明像素在转换后保持透明。
请提供任何帮助。
如何检查 OpenCV 中的像素是否透明?我有一个带有透明部分的 png 图像,我想将 rgb 图像转换为 hsv,然后改变像素的色调。我需要透明像素在转换后保持透明。
请提供任何帮助。
你可以试试GDAL。它与 CV2 兼容
这些链接可能有用。
import gdal
from gdalconst import *
import numpy as np
ds = gdal.Open('lena.jpg', GA_ReadOnly)
B = ds.GetRasterBand(1)
G = ds.GetRasterBand(2)
R = ds.GetRasterBand(3)
A = ds.GetRasterBand(4) // Alpha
height, width = B.shape
img = np.zeros(height, width, 3)
img[:, :, 0] = B
img[:, :, 1] = G
img[:, :, 2] = R
// Do something you want
ds.GetRasterBand(1).WriteArray(new_B)
ds.GetRasterBand(2).WriteArray(new_G)
ds.GetRasterBand(3).WriteArray(new_R)
// The forth band dose not need to be changed
// Close image, the changes is writen in the source file
ds = None
// Note that I did not test this code
OpenCV 不支持图像中的透明性。(v2.4之前,我不确定最新版本)
您可以在http://blog.developer.stylight.de/2010/05/how-to-load-alpha-channel-pngs-with.html尝试解决方案并重建 OpenCV,或者您可以使用 ImageMagick 之类的东西来提取alpha 层(论坛链接)作为单独的图像并加载它。