Ask Your Question

sofia123's profile - activity

2017-03-31 18:55:16 -0600 received badge  Popular Question (source)
2016-01-07 11:35:01 -0600 commented answer How can I get frames from my webcam ?

This works for me. I am using openCV 3.1.0 with VS2015.

2016-01-07 11:33:57 -0600 answered a question How can I get frames from my webcam ?

This works for me. I am using openCV 3.1.0 with VS2015.

2016-01-06 16:35:33 -0600 received badge  Scholar (source)
2016-01-06 16:35:30 -0600 commented answer openCV3.1.0 on Visual studio 2015 (community) install failed: cannot open include file

For those who interested to know what happened: I reinstalled visual studio 2015 and it worked this time.

2016-01-06 12:12:15 -0600 commented answer openCV3.1.0 on Visual studio 2015 (community) install failed: cannot open include file

No. $(OPENCV_DIR)\..\..\include does not work either. This is really frustrating. I guess I should use the source code and build using cmake.

2016-01-05 12:30:05 -0600 commented answer openCV3.1.0 on Visual studio 2015 (community) install failed: cannot open include file

Hi, I am sorry for the typo. I did use $(OPENCV_DIR)..\..\include in the c++ additional include directories. I can't find anything else that goes wrong.

2016-01-05 11:12:08 -0600 received badge  Editor (source)
2016-01-05 10:55:43 -0600 asked a question openCV3.1.0 on Visual studio 2015 (community) install failed: cannot open include file

I followed the exact tutorial on the website. Here is what I did for the installation:

Download and unzip the pre-compiled 3.1.0 package.

In the command window: setx -m OPENCV_DIR C:\opencv310\Build\x64\vc14

Add %OPENCV_DIR%\bin to path in the system variable.

After setting environment variable I followed the tutorial:

c/c++--additional include directories: $(OPENCV_DIR)....\include for both debug and release mode

linker--general--additional library directories: $(OPENCV_DIR)\lib for both debug and release mode

linker--input--additional dependencies: opencv_world310d.lib for debug mode; opencv_world310.lib for release mode

However,

include <opencv2\opencv.hpp>

gave an error saying no such file or directory. Can someone help me?