在 OpenCV C++ 中将图像的所有白色像素更改为透明

Change all white pixels of image to transparent in OpenCV C++

我在 OpenCV 中有这张图片 imgColorPanel = imread("newGUI.png", CV_LOAD_IMAGE_COLOR);:

当我用灰度 imgColorPanel = imread("newGUI.png", CV_LOAD_IMAGE_GRAYSCALE); 加载它时,它看起来像这样:

但是我想删除白色背景或使其透明(只有白色像素),看起来像这样:

如何在 C++ OpenCV 中实现?

您可以将输入图像转换为 BGRA 通道(带 alpha 通道的彩色图像),然后修改每个白色像素以将 alpha 值设置为零。

查看此代码:

    // load as color image BGR
    cv::Mat input = cv::imread("C:/Whosebug/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:/Whosebug/Output/transparentWhite.png", input_bgra);

这将以透明方式保存您的图像。 使用 GIMP 打开的结果图像如下所示:

如您所见,有些 "white regions" 不是透明的,这意味着您的那些像素在输入图像中不是完全白色的。 相反,您可以尝试

    // 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)