Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I followed the guide at the link below in order to get a hello world source to compile but I keep getting a link error as shown in the title. I don't understand why. I did include the file "opencv_core231.lib" from the vc10 directory in the linker input section of my project properties (among other things directed in the guide). Any ideas?

OpenCV 2.3 C++ Visual Studio 2010

share|improve this question
Can you upload your vcproj file? – Mourad Oct 10 '11 at 14:45
well i feel a bit inadequate. I can't figure out how to attache a file here. Can you help? – kevincw01 Oct 24 '11 at 22:33

1 Answer

In the 4-6 weeks I've been working with OpenCV 2.3 and Microsoft Visual Studio, I have copied all needed .dll files to my project folders. I believe that this is just how it is "done". I'm not saying you can't have some sort of link-sheet that you can import every time, but it has been working fine for me.

If you are interested, I used this guide for setup:

http://www.anlak.com/using-opencv-2-3-1-with-visual-studio-2010-tutorial/

This guy uses a property sheet to make projects, further along the path, easier to make. It's a decent walkthrough, with the exception that I could not find the property manager, which can be revealed through "View > Other Windows > Property Manager".

Hope this shed some light on your issue.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.