Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Why would you do that? You're begging for horrible debugging sessions! – Rakkun May 22 '12 at 8:45
execute the program using opencv2.1 instead of opencv2.3 – surya May 22 '12 at 9:11
The header files you use must match the compiled library unless the interface did not change, or things will not work. – etarion May 22 '12 at 10:21
   
Can't you simply upgrade to OpenCV 2.3.1? – karlphillip May 22 '12 at 12:10
Thank you karlphillip, i simply upgraded opencv2.1 to opencv2.3. Now it is working. – surya May 23 '12 at 5:53

1 Answer

You have 2 possibilities:

  1. Create a header file opencv2/opencv.hpp which simply includes each module's header file (which is what opencv.hpp does).

  2. Include the correct header file: opencv2/highgui/highgui.hpp instead or opencv2/opencv.hpp.

share|improve this answer
I simply upgraded opencv2.1 to opencv2.3. Now it is working. – surya May 23 '12 at 6:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.