Ask Your Question

lamiastella's profile - activity

2021-12-10 11:30:24 -0600 received badge  Notable Question (source)
2020-10-28 01:21:22 -0600 received badge  Notable Question (source)
2020-03-24 17:46:53 -0600 received badge  Popular Question (source)
2019-04-25 06:54:35 -0600 received badge  Popular Question (source)
2017-10-01 13:45:04 -0600 asked a question meanshift sample code in C++

meanshift sample code in C++ In OpenCV tutorial code I only see the code for meanshift in Python. Can you please have th

2017-06-28 13:53:23 -0600 answered a question OpenCV 3.2 Visual Studio .dlls missing

You would need to have the following in the additional include libraries in Project Properties->C++->General:

C:\opencv\build\include\opencv2

and

C:\opencv\build\include

Also, in the linker in Link Library Dependencies section, you would need to have:

C:\opencv\build\x64\vc14\lib

Additionally, you should have opencv_world320.lib in the Linker->Input->Additional Dependencies At the end, add C:\opencv\build\x64\vc14\bin to PATH system variable and do a sign out. This assumes that OpenCV3.2.0 is in C:\ and you are using Visual Studio 2015 (VS14) and have extracted the Win Pack version of OpenCV.

2017-05-01 18:17:58 -0600 commented question VC14 fatal error C1083: Cannot open include file: 'opencv/cxcore.h': No such file or directory

http://imgur.com/a/BXv2K http://imgur.com/a/iYUZN http://imgur.com/a/DkQ4s http://imgur.com/a/nTbC4

2017-05-01 18:17:58 -0600 asked a question VC14 fatal error C1083: Cannot open include file: 'opencv/cxcore.h': No such file or directory

for

// OpenCV Libraries
#include <opencv/cxcore.h>
//#include "opencv2/core/core.hpp"

I get the following error:

I have the paths in the environment variables (OPENCV_DIR, OPENCV_VER and also the path to the bin dir in Path variable).

Please suggest what could be done?

2017-05-01 18:07:27 -0600 received badge  Autobiographer