1 | initial version |
the prebuilt opencv libs contain a single (all in one) opencv_world.lib
, if you have that, just link against this lib.
libs like opencv_core, opencv_highgui only get built, if you build the m from src, locally, using cmake.
(also, you will need more libs, core alone won't do. and your linker probably stopped complaning after the 1st (a dozen) libs)
2 | No.2 Revision |
the prebuilt opencv libs contain a single (all in one) opencv_world.lib
, if you have that, just link against this lib.
libs like opencv_core, opencv_highgui only get built, if you build the m them from src, locally, using cmake.
(also, you will need more libs, core alone won't do. and your linker probably stopped complaning after the 1st (a dozen) libs)