Ask Your Question

Coalman321's profile - activity

2017-06-12 09:03:25 -0600 commented answer Eclipse Neon c++ openCV 3.0.0+ install and usage

Ok stupid question i guess, but how do I do that? Is that the whole cmake thing? if so i couldn't get it to work. it would just spit out some sort of versioning or file not found errors.

2017-06-11 22:20:18 -0600 commented answer Eclipse Neon c++ openCV 3.0.0+ install and usage

So I spent some time messing with the settings and have made it back to the original compiler issue where the libraries do not seem to be included but the code is throwing no errors in eclipse.

it looks like this: imgur image

2017-06-11 20:22:17 -0600 commented answer Eclipse Neon c++ openCV 3.0.0+ install and usage

also what do you mean about minGW. That's what the eclipse tutorial tells you to use.. also i changed to the new inclusions and am still getting a build error

22:41:29 **** Incremental Build of configuration Debug for project testproj2 ****
Info: Internal Builder is used for build
g++ "-IC:\\Users\\cole\\Documents\\opencv\\build\\include\\opencv2" -O0 -g3 -Wall -c -fmessage-length=0 -o "src\\test.o" "..\\src\\test.cpp" 
In file included from ..\src\test.cpp:8:0:
C:\Users\cole\Documents\opencv\build\include\opencv2/opencv.hpp:48:38: fatal error: opencv2/opencv_modules.hpp: No such file or directory
compilation terminated.

22:41:29 Build Finished (took 82ms)
2017-06-11 19:24:41 -0600 commented answer Eclipse Neon c++ openCV 3.0.0+ install and usage

by 3.0.0+ i meant 3.2.0

2017-06-11 19:12:13 -0600 commented answer Eclipse Neon c++ openCV 3.0.0+ install and usage

I added the versioning tags and that part seems to work out but the inclusions are now throwing errors. any ideas?

20:10:57 **** Incremental Build of configuration Debug for project testproj2 ****
Info: Internal Builder is used for build
g++ "-IC:\\Users\\cole\\Documents\\opencv\\build\\include\\opencv2" -O0 -g3 -Wall -c -fmessage-length=0 -o "src\\test.o" "..\\src\\test.cpp" 
..\src\test.cpp:7:16: fatal error: cv.h: No such file or directory
compilation terminated.

20:10:57 Build Finished (took 82ms)
2017-06-11 19:02:10 -0600 commented answer Eclipse Neon c++ openCV 3.0.0+ install and usage

it would be helpful if the tutorials are updated. I will add those and try again

2017-06-11 18:52:19 -0600 asked a question Eclipse Neon c++ openCV 3.0.0+ install and usage

I am trying to work on a project for myself this summer and at its core, I am planning to use the NVIDIA Jetson platform and need the benefits of the CUDA acceleration. I am primarily a Java / C# programmer but due to the support issues this is the first time I am really working on the c++ side of things. During the process of setting up my environment for use in eclipse neon.3 everything seems fine, I used the install package and then added the libraries with the setx command in the tutorial. When I attempt to build any c++ application using OpenCV I get an error on the namespace and any other OpenCV references. Any help would be appreciated.

here is the output form the compiler:

19:46:43 **** Incremental Build of configuration Debug for project testproj2 ****
Info: Internal Builder is used for build
g++ "-IC:\\Users\\cole\\Documents\\opencv\\build\\include\\opencv2" -O0 -g3 -Wall -c -fmessage-length=0 -o "src\\test.o" "..\\src\\test.cpp" 
g++ "-LC:\\Users\\cole\\Documents\\opencv\\build\\include\\opencv2" -o testproj2.exe "src\\test.o" -lopencv_core -lopencv_imgproc -lopencv_highgui 
c:/mingw/bin/../lib/gcc/mingw32/5.3.0/../../../../mingw32/bin/ld.exe: cannot find -lopencv_core
c:/mingw/bin/../lib/gcc/mingw32/5.3.0/../../../../mingw32/bin/ld.exe: cannot find -lopencv_imgproc
c:/mingw/bin/../lib/gcc/mingw32/5.3.0/../../../../mingw32/bin/ld.exe: cannot find -lopencv_highgui
collect2.exe: error: ld returned 1 exit status

19:46:43 Build Finished (took 255ms)