close

今天在linux Ubuntu12.4 上面玩了 OpenCV-2.4.2 

我是用 Winxp 上面跑VMware10(網路序號)再灌 Ubuntu12.4

 

目前只安裝並且跑跑他的範例程式還不錯玩

可以參考下面的步驟

我參考兩個網址 應該是一樣的

http://www.raben.com/book/export/html/3

http://miloq.blogspot.tw/2012/12/install-opencv-ubuntu-linux.html

最後跑出臉部辨認的 lena XD   下一步再來玩玩 開 USB camera像在 Windows 環境中的玩法吧

 

下面為擷取自網頁  http://miloq.blogspot.tw/2012/12/install-opencv-ubuntu-linux.html

 

 

 

Note: This tutorial has been tested on Ubuntu 12.04 LTS with OpenCV 2.4.3.

Install OpenCV on Ubuntu Linux is a bit long but very easy. Simply, follow these steps:

1. UPDATE AND UPGRADE UBUNTU

Open your terminal and execute:

 

sudo apt-get update

 

 

sudo apt-get upgrade

 

2. INSTALL THE DEPENDENCIES

Now execute:

 

sudo apt-get install build-essential libgtk2.0-dev libjpeg-dev libtiff4-dev libjasper-dev libopenexr-dev cmake python-dev python-numpy python-tk libtbb-dev libeigen2-dev yasm libfaac-dev libopencore-amrnb-dev libopencore-amrwb-dev libtheora-dev libvorbis-dev libxvidcore-dev libx264-dev libqt4-dev libqt4-opengl-dev sphinx-common texlive-latex-extra libv4l-dev libdc1394-22-dev libavcodec-dev libavformat-dev libswscale-dev

 

3. DOWNLOAD AND DECOMPRESS OPENCV

Enter the OpenCV official website and download the latest version for Ubuntu Linux. Then decompress the downloaded file.

4. COMPILE OPENCV

Now, in your terminal, make sure you are within the OpenCV directory and run the following commands:

 

mkdir build

 

 

cd build

 

 

cmake -D WITH_TBB=ON -D BUILD_NEW_PYTHON_SUPPORT=ON -D WITH_V4L=ON -D INSTALL_C_EXAMPLES=ON -D INSTALL_PYTHON_EXAMPLES=ON -D BUILD_EXAMPLES=ON -D WITH_QT=ON -D WITH_OPENGL=ON ..

 

 

make

 

 

sudo make install

 

5. CONFIGURE OPENCV

In your terminal, execute:

 

sudo gedit /etc/ld.so.conf.d/opencv.conf

 

Add the following line and save it:

 

/usr/local/lib

 

Now, in your terminal, execute:

 

sudo ldconfig

 

Again, execute:

 

sudo gedit /etc/bash.bashrc

 

Add the following two lines at the end of the file and save it:

 

PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig
export PKG_CONFIG_PATH

 

Finally, reboot your computer.

6. TRY AN EXAMPLE

To test an example, from your terminal enters in the OpenCV folder. Once you're inside it enters insamples/c.

Now, execute:

 

chmod +x build_all.sh

 

 

./build_all.sh

 

 

./facedetect lena.jpg

 

lenaopencv
arrow
arrow
    全站熱搜

    coldspider 發表在 痞客邦 留言(0) 人氣()