Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I already have OpenCV2.4.2 installed as part of ROS(Fuerte) in my computer(installed from Ubuntu Software Center, something due to ROS). How should I install OpenCV as a standalone ?

I went through this guide and downloaded the opencv package from here. I am not quite clear as how to proceed. Can anyone give short list of steps to install? I want to use an IDE for my projects, so which IDE is proper for C++ and how to install the proper IDE and configure it correctly?

Also how to check if certain tools are installed? (I am a newbie to Ubuntu)

and I have this big doubt that, Will problems be created if i try to install this(standalone) because of the already installed (ROS) OpenCV ? Should i take care of anything? Your guidance will be helpful for a learner.

Thank you

share|improve this question

2 Answers

http://opencvstart.blogspot.com/2012/12/install-opencv-in-ubuntu-1204.html

This will do all you need, download, install, setting paths etc.

share|improve this answer

This link which you also mentioned describes the necessary steps to compile OpenCV on your machine. The version of OpenCV you install this way will be newer than the one installed with the ROS package, they usually have some delay. (Maybe not with Fuerte.)

Using multiple versions of the same library on a machine might cause problems with linking and it will create a bit of headache for you so I would avoid it.

Try running pkg-config opencv --libs to see if the ROS version pulled by Fuerte is available and you can use this with your projects later on.

For a starter IDE I would recommend Qt Creator. The easy way to set OpenCV up with your project in Qt Creator is the following:

  1. Create a project
  2. Open the .pro file of the project
  3. Run pkg-config opencv --cflags
  4. Add this to the .pro file: INCLUDEPATH += __result__of__above
  5. pkg-config opencv --libs
  6. Add this to the .pro file: LIBS += __result__of__above

In the end what you add should look something like this:

INCLUDEPATH += -I/opt/ros/fuerte/include

LIBS += -L/opt/ros/fuerte/lib -lopencv_calib3d -lopencv_contrib -lopencv_core -lopencv_features2d -lopencv_flann -lopencv_gpu -lopencv_highgui -lopencv_imgproc -lopencv_legacy -lopencv_ml -lopencv_nonfree -lopencv_objdetect -lopencv_photo -lopencv_stitching -lopencv_ts -lopencv_video -lopencv_videostab

share|improve this answer
I added to .pro file as you said... when I tried a opencv program and Build it ,an error says /home/karthik/Desktop/Qt/Hello_World-build-desktop-Qt_4_8_1_in_PATH__System__Relea‌​se/../Hello_World/main.cpp:6: error: opencv2/opencv.hpp: No such file or directory.. any suggestions?? – Karthik Murugan Feb 22 at 10:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.