Ask Your Question

reddog's profile - activity

2017-06-08 21:05:51 -0600 received badge  Enthusiast
2017-06-07 17:40:57 -0600 commented question How Do I Build OpenCV With MS Visual Studio?

I removed all "BUILD" and "WITH" options that involved CUDA, and it worked, so apparently CUDA is the issue. So I can start learning OpenCV, perhaps with less performance, and worry about getting CUDA to work at a later time.

Thank you.

2017-06-06 20:13:45 -0600 commented question How Do I Build OpenCV With MS Visual Studio?

OK, after a lot of work unchecking "build" and "with" options, I got it to build opencv_core320d.dll successfully. Now add things back in until it doesn't work?

2017-06-05 19:28:45 -0600 asked a question How Do I Build OpenCV With MS Visual Studio?

I am trying to build OpenCV with MS visual studio 2017, and can't get it to work. Cmake seems to work just fine, but when I build in VS, I get a string of errors. The only file in the BIN directory after build is opencv_cudev320d.dll. Examples of the errors are: MSB6006 "cmd.exe" exited with code 1 opencv_core
and LNK1104 cannot open file "..\lib\debug\opencv_core320d.lib" opencv_ml

This is using the released version 3.2, I got the same results downloading the latest version in GitHub.

Any thoughts as to what I can do to fix this are appreciated.

2017-04-16 19:38:14 -0600 commented answer Error Installing on Windows 10 with cmake

Thanks, now it gets partway through to:

CMake Error at CMakeLists.txt:11 (include): include could not find load file:

cmake/OpenCVMinDepVersions.cmake

CMake Error at CMakeLists.txt:102 (include): include could not find load file:

cmake/OpenCVUtils.cmake

CMake Error at CMakeLists.txt:105 (ocv_update): Unknown CMake command "ocv_update".

Configuring incomplete, errors occurred!

I would like to compile them to take advantage of Cuda, but if I can't, so be it.

2017-04-16 17:34:07 -0600 asked a question Error Installing on Windows 10 with cmake

I am trying to install OpenCV on Windows 10, and get an error when running cmake, text below:

Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed.
Compiler:  
Build flags: 
Id flags:  

The output was:
The system cannot find the file specified


Compiling the C compiler identification source file "CMakeCCompilerId.c" failed.
Compiler:  
Build flags: 
Id flags:  

The output was:
The system cannot find the file specified

I am using Visual Studio 2015. I'm not sure exactly what Cmake does, I believe it compiles all the OpenCV modules into a .dll? Is it possible to just use precompiled libraries, or just include the OpenCV modules I want to use in my code? I am interested in computer vision, not necessarily the intimate details of software development systems, and want the simplest way to get OpenCV. Thanks for any help you can provide.