Ask Your Question
0

OpenCV 2.4.3 for windows installation problem

asked 2013-02-12 06:10:47 -0600

vlad gravatar image

updated 2013-02-12 07:32:50 -0600

Daniil Osokin gravatar image

Hi, I have downloaded the "OpenCV-2.4.3.exe" as written in Tutorials: "1.Launch a web browser of choice and go to our page on Sourceforge." After I run this file it extracted the files but didn't start installation wizard!

Please help.

edit retag flag offensive close merge delete

Comments

Hi! You've done all right. For the next step, check tutorial "How to building applications with OpenCV inside the Microsoft Visual Studio": http://docs.opencv.org/trunk/doc/tutorials/introduction/windows_visual_studio_Opencv/windows_visual_studio_Opencv.html. (P.S. Now OpenCV has no installation wizard, this doc will be fixed with next release).

Daniil Osokin gravatar imageDaniil Osokin ( 2013-02-12 07:30:42 -0600 )edit

1 answer

Sort by ยป oldest newest most voted
0

answered 2013-02-12 06:32:42 -0600

berak gravatar image

updated 2013-02-12 06:34:22 -0600

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\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!

edit flag offensive delete link more

Question Tools

Stats

Asked: 2013-02-12 06:10:47 -0600

Seen: 436 times

Last updated: Feb 12 '13