Commit 3cfd7fcb authored by Maksim Shabunin's avatar Maksim Shabunin

Merge pull request #5681 from sturkmen72:patch-3

parents 559e1f76 99a286ef
...@@ -177,8 +177,6 @@ should have alpha set to 0, fully opaque pixels should have alpha set to 255/655 ...@@ -177,8 +177,6 @@ should have alpha set to 0, fully opaque pixels should have alpha set to 255/655
The sample below shows how to create such a BGRA image and store to PNG file. It also demonstrates how to set custom The sample below shows how to create such a BGRA image and store to PNG file. It also demonstrates how to set custom
compression parameters : compression parameters :
@code @code
#include <vector>
#include <stdio.h>
#include <opencv2/opencv.hpp> #include <opencv2/opencv.hpp>
using namespace cv; using namespace cv;
...@@ -211,7 +209,7 @@ compression parameters : ...@@ -211,7 +209,7 @@ compression parameters :
try { try {
imwrite("alpha.png", mat, compression_params); imwrite("alpha.png", mat, compression_params);
} }
catch (runtime_error& ex) { catch (cv::Exception& ex) {
fprintf(stderr, "Exception converting image to PNG format: %s\n", ex.what()); fprintf(stderr, "Exception converting image to PNG format: %s\n", ex.what());
return 1; return 1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment