Home » Questions » Computers [ Ask a new question ]

how to install opencv in ubuntu karmic koala

how to install opencv in ubuntu karmic koala

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..

Asked by: Guest | Views: 259
Total answers/comments: 1
bert [Entry]

"To install OpenCV using the terminal on Ubuntu:

$ su -
# apt-get update
# apt-get install build-essential
# apt-get install libavformat-dev
# apt-get install x264 v4l-utils ffmpeg
# apt-get install libcv2.3 libcvaux2.3 libhighgui2.3 python-opencv opencv-doc libcv-dev libcvaux-dev libhighgui-dev

OpenCV should be installed in /usr/local/ Installation Directory

You may also want to compile and view examples

$ cp -r /usr/share/doc/opencv-doc/examples .
$ cd examples
$ cd c
$ sh build_all.sh

Source: http://namhuy.net/1205/how-to-install-opencv-on-ubuntu.html"