OpenCV
Store Image By XML With OpenCV
We can use XML to store the OpenCV matrix and read it to recover the whole image. A simple example is in the following code snippet. We write an original image data to Untitled1.xml, then read it to generate another Mat object and show it. #include <stdio.h> #include <opencv2/opencv.hpp> #include Read more…