0
votes
0answers
20 views

Eclipse Platform

i'm working on Eclipse Platform Version: 3.7.0 with openCV i've added openCv libraries an Eclipse knows cv.h and highgui.h but the openCv functions like cvConvertScale and all are not recognizable.
0
votes
0answers
55 views

<terminated> xyz debug [c/c application] in opencv eclipse

i am using eclipse with opencv 2.1 and MinGW in windows 7. i am trying to display an image, i build the code succefully but when i try to run the xyz.exe it is showing xyz debug[c/c++ application]. i ...
1
vote
1answer
74 views

Android CDT setup std cannot be resolved

I have been programing with the CDT for a while, and it has worked fine. In general everything works with it, for example I can import opencv fine by typing using namespace cv; However, right now ...
0
votes
2answers
211 views

opencv linking error after mixing c++ with c version

I'm working with opencv 2.4.0 using eclipse CDT (Indigo Service Release 2) on windows 7 64 bit machine. I complied opencv from sources (using cmake/visual studio express 10) following the steps ...
4
votes
1answer
69 views

How to resolve this linker error?

I am trying to use a compiled library inside an Eclipse project. The compilation goes fine but during linking i get an error. Below is the verbose generated on eclipse console. g++ -L/usr/local/lib ...
1
vote
1answer
293 views

Configure OpenCV with Eclipse IDE for C/C++ Developers on Windows7

I am using, Eclipse IDE for C/C++ Developers (Juno) and open cv. I tried to follow the documentation over internet. Most of them is around linux machine. My OS is Windows7. Please guide me to ...
0
votes
3answers
420 views

cvLoadImage Returning NULL

I am working on Ubuntu 12.04,32 bit platform with OpenCV Version 2.4.1 on eclipse ide. The cvLoadImage() function is returning me a NULL value even after putting the image in the current Location of ...
2
votes
2answers
821 views

'cvFindContours' was not declared in this scope, opencv 2.4.2, compilation error

I am working on detecting edges and finding quadrilateral shapes on image using opencv 2.4.2 libraries. Everthing was going smooth, until I got these compilation errors ...
0
votes
1answer
969 views

Error in configuring opencv 2.4 (pre-built) for eclipse in windows 7

I am trying to configure opencv 2.4 (pre-built) for eclipse in windows 7. For this I did the followings: Installed OpenCV-2.4.0.exe in D:\opencv Installed Eclipse CDT Added ...
0
votes
1answer
184 views

Using mingw with opencv — init error

I use Eclipse CDT for developing C with mingw. I also add opencv libary. Everything compiled without problems. But if I start the compiled application (using a opencv-function) there is an init error. ...
0
votes
0answers
90 views

binary generated, but it's show grey window instead my image

i have problem, nearly same like this one C++ Eclipse OpenCV : .exe file and binaries generated, but no image displayed but his solution still not solve the problem... i was trying this on my win 7 ...
0
votes
0answers
734 views

Error in Eclipse missing openCV library file “libopencv_core.so.2.3”?

I am trying to get openCV 2.3.1 to work on Eclipse on ubuntu 11.10. So far i built openCV using this tutorial and it works when i create a .cpp file using gedit text editor and compile it from ...
1
vote
1answer
410 views

OpenCV C++ app terminates immediately when launched from Eclipse

I'm currently having an issue getting a very small app using OpenCV launching from Eclipse. The application launches fine from the command line, however when I launch it from Eclipse it simply ...
0
votes
1answer
316 views

Eclipse CDT not working with OpenCV 2.0 integrated with Cygwin compiler

I have done all the necessary job like adding "c:/cygwin/bin" to system path, I have also set the include path under project->properties->c/c++ build->setting and also set the linker library search ...
1
vote
1answer
657 views

C++ Eclipse OpenCV : .exe file and binaries generated, but no image displayed

Here's my code (the first DisplayImage.cpp code in the OpenCV documentation) /* * DisplayImage.cpp * * Created on: Dec 25, 2011 * Author: Arcturus */ #include <iostream> ...
4
votes
3answers
886 views

OpenCV using Eclipse with CDT

I was always using QtCreator for OpenCV but a new project started with a friend needs to be done with eclipse. I did all things I usually do with QtCreator but I am facing a strange problem. Although ...
0
votes
1answer
883 views

Build error OpenCV on Eclipse in Windows

i am new in OpenCV and i am trying to setup OpenCV in eclipse in Windows 7. I have fallowed this tutorial and also i have set my path environment to openCv/bin directory but i still get an errors and ...
2
votes
1answer
833 views

Installation and maintenance of multiple versions of OpenCV (applicable to any other 3rd party library as well)

I have been trying to do build and use OpenCV 2.3.0 on my Fedora15 Lovelock 64bit machine. Background: First, on my 64bit Fedora15, OpenCV2.2.0 seems to be in the locations namely ...
2
votes
1answer
4k views

How to setup Eclipse CDT 8 with OpenCV 2.3 in Windows?

I am trying to setup Eclipse CDT 8 with OpenCV 2.3 in Windows 7 32. Firstly, I tried downloading OpenCV 2.3 and setting up with eclipse according to this tutorial (some minor different steps..): ...
4
votes
1answer
1k views

Conflict between Boost, OpenCV and Eigen libraries?

my question is somewhat related to Static linking of Boost and OpenCV libs with Eclipse CDR. errors, whereas I'm trying to do a bit more than described here: How to create a program that can read all ...
0
votes
2answers
1k views

Eclipse CDT and OpenCV issue

I'm trying to make OpenCV work in Eclipse CDT, provided that I'm using the following under Windows 7: I have set the path for Includes under Cygwin C++ Compiler as follows: ...
0
votes
2answers
1k views

Static linking of Boost and OpenCV libs with Eclipse CDR. errors

I try to link my project statically with the Boost and OpenCV libs in Eclipse CDT. I have searched Google which libraries I have to add and added them to the linker. But the error messages are still ...
1
vote
2answers
2k views

OpenCV, eclipse compile problem

I have a compile problem I can't figure out for OpenCV2.1 in c++. Here is a simple test code I am trying to compile: #include <iostream> #include "cv.h" using namespace std; int main() { ...
1
vote
2answers
1k views

Get OpenCV2.1 to run in windows using eclipse

I am trying to get OpenCV2.1 to run on my windows machine. Here is what I have done so far: Installed MinGW using MinGW-get-inst Installed Visual Studio C++ 2008 Express Installed ...
1
vote
4answers
4k views

Where does opencv install it's libs in ubuntu

I have ubuntu 10 installed. I installed all the opencv packages I could find in the software center. I expect that it installs some .lib files somewhere that I can reference in my project, but I ...