use modules from opencv_extra in visual studio 2013
This is my firs use of opencv_extra , cant found something about building in vs . Trying to build program with "text" module from opencv_extra. I was downloaded "opencv_contrib" repo and added headers from include in text module to my opencv include folder, but it's only headers and I have errors like " unresolved external symbol "struct cv::Ptr<class cv::text::erfilter="">" so where I can get text.lib ? Or I must do something else for build programs with extra modules ?
you will have to build the libs first using cmake. then build the INSTALL project. this will copy the headers and libs to your main opencv folder.
And that was the exact reason I went to Linux based OS, the building process of OpenCV ... :D
Thanks ! I was writing programs for Linux based system , so it's second reason to went to Linux, but there is no VS ( yes, I'm pervert ) Which compiller did you use in Linux based OS ? EŃlipse ?
I use codeblocks, clean and easy to configure with opencv and pkgconfig options!
Will try it, thanks again :)