OpenCV imwrite() 函数生成图像到文件

生成一张透明 Alpha 值图。

#include <opencv2/opencv.hpp>
#include <vector>

using namespace cv;
using namespace std;

void createAlphaMat(Mat& mat)
{
    for (int i = 0; i < mat.rows; i++) {
        for (int j = 0; j < mat.cols; j++) {
            Vec4b& rgba = mat.at<Vec4b>(i, j);
            rgba[0] = UCHAR_MAX;
            rgba[1] = saturate_cast<uchar> ((float(mat.cols - j)) / ((float)mat.cols) * UCHAR_MAX);
            rgba[2] = saturate_cast<uchar> ((float(mat.rows - i)) / ((float)mat.rows) * UCHAR_MAX);
            rgba[3] = saturate_cast<uchar> (0.5 * (rgba[1] + rgba[2]));
        }
    }
}


int main()
{
    Mat mat(480, 640, CV_8UC4);
    createAlphaMat(mat);

    vector<int> compression_params;

    compression_params.push_back(IMWRITE_PNG_COMPRESSION);
    compression_params.push_back(9);

    try
    {
        imwrite("透明Alpha图.png", mat, compression_params);
        imshow("透明Alpha图", mat);
        fprintf(stdout, "PNG 图片文件 alpha 数据保存完毕~\n可以在工程目录下查看图片~\n");
        waitKey(0);                
    }
    catch (runtime_error& ex)
    {
        fprintf(stderr, "图像转换成 PNG 图片格式发生错误:%s\n", ex.what());
        return 1;
    }

    return 0;
}

工程目录下会有一张 透明Alpha图.png 的透明图片。打开如下:




参考:

《OpenCV3 编程入门》 毛星云 P69

posted @ 2021-12-07 17:15  double64  阅读(266)  评论(0)    收藏  举报