I have Windows 7 (64-bit) and I'm trying to configure opencv 2.2 for Microsoft Visual Studio 2010, I followed the instructions in the OpenCV 2 book "Book on Programming Computer Vision Applications" , but it doesnโt work, I completed next steps:
According to the instructions in the book, everything should now be correctly configured, but when I include the header files (after entering (Hash) include (angle bracket)), intellisense only gives:
#include <cxcore.h> #include <cv.h>
but instead he had to display
#include <opencv2/core/core.hpp>
and when i write
#include <opencv2/core/core.hpp>
it gives me an error, cannot open the source file "opencv2 / core / core.hpp" if I include
#include <cv.h >
I got 11 errors:
1. IntelliSense: cannot open source file "opencv2/core/core_c.h" c:\opencv- 2.2.0\include\opencv\cv.h 63 1 2. IntelliSense: cannot open source file "opencv2/core/core.hpp" c:\opencv-2.2.0\include\opencv\cv.h 64 1 3. IntelliSense: cannot open source file "opencv2/imgproc/imgproc_c.h" c:\opencv-2.2.0\include\opencv\cv.h 65 1 4. IntelliSense: cannot open source file "opencv2/imgproc/imgproc.hpp" c:\opencv-2.2.0\include\opencv\cv.h 66 1
[Other errors are similar to the errors above.]
I did not add anything under C / C ++ -> General -> Additional Include directories in the property sheet, is there a need to include something there?
Can anyone tell me what I did wrong during the setup process?
Is there any manual specifically designed to configure opencv 2.2 on Windows 7 (64-bit) on Visual Studio 2010?
source share