我在OpenCV imgColorPanel = imread("newGUI.png", CV_LOAD_IMAGE_COLOR);
中有这张图片:
当我用灰度imgColorPanel = imread("newGUI.png", CV_LOAD_IMAGE_GRAYSCALE);
加载它时,它看起来像这样:
但是我想删除白色背景或使其透明(只有白色像素),看起来像这样:
如何在C ++ OpenCV中实现?
答案 0 :(得分:9)
您可以将输入图像转换为BGRA通道(带有Alpha通道的彩色图像),然后修改每个白色像素以将Alpha值设置为零。
请参阅此代码:
// load as color image BGR
cv::Mat input = cv::imread("C:/StackOverflow/Input/transparentWhite.png");
cv::Mat input_bgra;
cv::cvtColor(input, input_bgra, CV_BGR2BGRA);
// find all white pixel and set alpha value to zero:
for (int y = 0; y < input_bgra.rows; ++y)
for (int x = 0; x < input_bgra.cols; ++x)
{
cv::Vec4b & pixel = input_bgra.at<cv::Vec4b>(y, x);
// if pixel is white
if (pixel[0] == 255 && pixel[1] == 255 && pixel[2] == 255)
{
// set alpha to zero:
pixel[3] = 0;
}
}
// save as .png file (which supports alpha channels/transparency)
cv::imwrite("C:/StackOverflow/Output/transparentWhite.png", input_bgra);
这将保存您的图像透明度。 使用GIMP打开的结果图像如下所示:
正如你所看到的,一些白色区域&#34;不透明,这意味着你的那些像素在输入图像中并不是完全白色的。 相反,你可以尝试
// if pixel is white
int thres = 245; // where thres is some value smaller but near to 255.
if (pixel[0] >= thres&& pixel[1] >= thres && pixel[2] >= thres)