Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

if you're trying to use the prebuilt libraries, - there is no further install step.

you have to add the path to your binaries(the dlls) to your global PATH environment variable, so your program can find them at runtime. on my machine, that's : E:\code\opencv242\build\x86\vc9\bin , choose your combination of os(64/32 bit) and compiler(vc9/vc10/mingw) here.

start a new project, point the include dirs at: opencv\build\include, and the linker dirs at: opencv\build\x86\vc9 (same os/compiler thing as above). most projects should at least need opencv_core243.lib and opencv_highgui243.lib ( add a 'd' after 243 for debug builds )

that's it!

if you're trying to use the prebuilt libraries, - there is no further install step.

you have to add the path to your binaries(the dlls) to your global PATH environment variable, so your program can find them at runtime. on my machine, that's : E:\code\opencv242\build\x86\vc9\bin , choose your combination of os(64/32 bit) and compiler(vc9/vc10/mingw) here.

start a new project, point the include dirs at: opencv\build\include, and the linker dirs at: opencv\build\x86\vc9 opencv\build\x86\vc9\lib (same os/compiler thing as above). most projects should at least need opencv_core243.lib and opencv_highgui243.lib ( add a 'd' after 243 for debug builds )

that's it!