I've included the header files that cvFindChessboardCorners()
is declared in and a bunch of others but it still doesn't work. How do a define the symbol? Not sure what is going on here?
Let me know if more information is required. Thanks.
I've included the header files that cvFindChessboardCorners()
is declared in and a bunch of others but it still doesn't work. How do a define the symbol? Not sure what is going on here?
Let me know if more information is required. Thanks.
You have to add the OpenCV Libraries to your project. (Description for VS2010)
First add the path under
Project -> Configuration Properties -> VC++ Directories -> Library Directories
For my system, it is D:\OpenCV\build\x64\vc10\lib
Then under Linker -> Input -> Additional Dependencies add
opencv_calib3d231.lib opencv_contrib231.lib opencv_core231.lib opencv_features2d231.lib opencv_flann231.lib opencv_haartraining_engine.lib opencv_highgui231.lib opencv_imgproc231.lib opencv_legacy231.lib opencv_ml231.lib opencv_objdetect231.lib opencv_ts231.lib opencv_video231.lib
and you should be good to go.