shaoheshaohe 发表于 2020-5-27 19:28:35

调整PNG图像格式的保存质量

png格式的图像,我们同样可以调整其保存的质量。#include<opencv2\opencv.hpp>   #include<opencv2\highgui\highgui.hpp>using namespace std;using namespace cv;int main(int argc, char** argv){        Mat img = imread("src1.jpg");        vector<int> compression_params;        compression_params.push_back(CV_IMWRITE_PNG_COMPRESSION); //PNG格式图片的压缩级别        compression_params.push_back(9);//这里设置保存的图像质量级别        imwrite("test3.png", img,compression_params);

页: [1]
查看完整版本: 调整PNG图像格式的保存质量