Ask Your Question

JOhn12341234's profile - activity

2015-10-23 04:33:11 -0600 received badge  Famous Question (source)
2015-03-30 01:25:03 -0600 received badge  Notable Question (source)
2015-02-27 01:16:05 -0600 received badge  Popular Question (source)
2014-07-28 15:24:04 -0600 asked a question Camera window inside of GUI

Is there a tutorial or some example code that places an opencv webcam element inside of a gui (Qt maybe?) that I can add buttons, labels, etc to? I've been searching but am unable to find anything.

2014-07-28 14:01:47 -0600 received badge  Scholar (source)
2014-07-28 09:53:26 -0600 commented answer opencv_core 249d.dll is missing from your computer

That doesn't solve the problem totally though. I had to use this write up: http://stackoverflow.com/questions/16830842/using-static-libraries-instead-of-dynamic-libraries-in-opencv

What is amazing is that this isn't front-page of the tutorial. This is important stuff that lots of people have to go through. It shouldn't be something someone has to hope is explained on stackOverflow somewhere..

2014-07-28 09:37:28 -0600 commented answer opencv_core 249d.dll is missing from your computer

Is there a write-up on how to do that with VS13 and Win8? I think there is already a staticlib folder that came with openCV. Shouldn't I be able to just use that?

2014-07-28 09:17:20 -0600 commented answer opencv_core 249d.dll is missing from your computer

I made this modification and still get the same error: MyProgram > Properties > C/C++ > Code Generation > Runtime Library: Multi-Threaded (/MTd) ()for debug) MyProgram > Properties > C/C++ > Code Generation > Runtime Library: Multi-Threaded (/MT) (for release)

2014-07-28 09:15:58 -0600 received badge  Editor (source)
2014-07-27 22:41:02 -0600 asked a question opencv_core 249d.dll is missing from your computer

I don't want my program to be dependent on any OpenCV dlls. I want it to pull whatever it determines it needs from the lib or source files.

I have followed the tutorial (http://docs.opencv.org/doc/tutorials/introduction/windows_visual_studio_Opencv/windows_visual_studio_Opencv.html#windows-visual-studio-how-to) and double checked everything.

I have: MyProgram > Properties > C/C++ > General: Additional Include Directories set to: C:\OpenCV\build\include

MyProgram > Properties > Linker > General: Additional Library Directories set to: C:\OpenCV\build\x86\vc12\lib

MyProgram > Properties > Linker > Input: Additional Dependencies set to: opencv_core249d.lib opencv_imgproc249d.lib opencv_highgui249d.lib opencv_ml249d.lib opencv_video249d.lib opencv_features2d249d.lib opencv_calib3d249d.lib opencv_objdetect249d.lib opencv_contrib249d.lib opencv_legacy249d.lib opencv_flann249d.lib

I'm using visual studio 2013 on windows 8. What am I doing wrong here?

Possible Solution: MyProgram > Properties > C/C++ > Code Generation > Runtime Library: Multi-Threaded (/MT)