Names of new libraries
I have to compile an old project, and libraries that I have to LINK (among others) are:
cv210.lib
cxcore210.lib
What are names for those libraries in new OpenCV 2.4.6 ?
I have to compile an old project, and libraries that I have to LINK (among others) are:
cv210.lib
cxcore210.lib
What are names for those libraries in new OpenCV 2.4.6 ?
@StevenPuttemans Sorry, I wrote INCLUDE instead of LINK. The problem occured with LINKER. Those 4 libraries done the trick: opencv_imgproc246d.lib opencv_core246d.lib opencv_highgui246d.lib opencv_objdetect246d.lib
Asked: 2013-08-12 10:40:57 -0600
Seen: 816 times
Last updated: Aug 13 '13
Problems including OpenCV 2.3.0 in Visual Studio 2008 with static libraries
library documentation and calling opencv from java
OpenCV includes / libraries documetation
Why compile the opencv libraries by myself?
Cross compiling OpenCV for ARM but failed to find necessary libraries
Library problems using Eclipse, OpenCV on Mavericks
Eclipse opencv “not declared in the scope” errors at compilation
I guess
Will do the trick. Are you using any specific functionality except from basic image processing?
No, it won't do the trick.
In VS2010, Project properties, Configuration Properties, Linker, Input, Additional decencies I have to name all of the libraries that are used.
to append to what steven said, for each module header, there's a resp. library:
opencv_core246.lib opencv_highgui246.lib opencv_imgproc246.lib
@Nenad I asked if you had more dependencies ... like @berak said, you will need to include all libraries of which you are using functionality.
@StevenPuttemans I know that, what I asked is what exactly NEW libraries are direct replacement for OLD libraries, specifically cv210.lib and cxcore210.lib
For the core I gave you, but for the cv, which was one big library in early versions, you have one for each module, it doesn't exist anymore in that specific setup.
@berak those 4 libraries done the trick: opencv_imgproc246d.lib opencv_core246d.lib opencv_highgui246d.lib opencv_objdetect246d.lib