I am using openCv 2.1, I am trying to save the cv::Mat featureVect in .xml format.
The featureVect is Intialised and it having the data. When I am using the below code
#include "opencv2/opencv.hpp"
cv::FileStorage fs("myFile.xml", FileStorage::WRITE);
fs << "Feature_Mtx" << featureVect;
I am getting the error. i.e #include "opencv2/opencv.hpp" is not included.
I know that above header file is not in the directory C:\OpenCV2.1\include\opencv
and this header files present in opencv2.3. Is it possible to use this header file in my program i.e in opencv2.1.
Thanks