天天看點

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;
}      
OpenCV imwrite() 函數生成圖像到檔案

工程目錄下會有一張 ​

​透明Alpha圖.png​

​ 的透明圖檔。打開如下:

OpenCV imwrite() 函數生成圖像到檔案

參考: