anyone know how to get a working install of opencv in karmic? I've tried pretty much every way i can find in a google search and none seem to work..

link|improve this question
2  
Could you mention what error you are facing ? – Sathya Nov 22 '09 at 14:09
feedback

migrated from stackoverflow.com Nov 22 '09 at 13:49

This question came from our site for professional and enthusiast programmers.

2 Answers

Are you looking for the Open Source Computer Vision library, OpenCV?

The 1.0 version is available in Karmic's universe repositories. You'll need to make sure that repository is enabled in your package manager. According to this post, you want to run this command to install all the library packages, or edit the list to leave off packages you don't want:

sudo apt-get install libcv1 libcvaux1 libcvaux-dev libcv-dev libhighgui1 libhighgui-dev opencv-doc python-opencv

If you want the 2.0 version, you'll need to grab the OpenCV 2.0 source from Sourceforge and build it yourself. See the OpenCV wiki and 2.0 Release Notes for details.

link|improve this answer
feedback

I just wrote a guide of how I got it to work, might be use to you -> http://alexsleat.com/2009/12/02/howto-install-opencv-in-ubuntu-karmic-9-10/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown