Linux下編譯opencv庫[轉]

來源:互聯網
上載者:User

標籤:blog   http   io   ar   os   使用   for   sp   strong   

下載源碼

從http://sourceforge.net/projects/opencvlibrary 下載OpenCV源碼,下載檔案為opencv-1.0.0.tar.gz(如果是其他版本,檔案名稱相應改變,建議下載當時最新的版本)。

[編輯]

解壓檔案
tar zxvf opencv-1.0.0.tar.gzcd opencv-1.0.0
[編輯]

檢查軟體配置
$./configurechecking build system type... i686-pc-linux-gnuchecking host system type... i686-pc-linux-gnuchecking target system type... i686-pc-linux-gnuchecking for a BSD-compatible install... /usr/bin/install -cchecking whether build environment is sane... yeschecking for gawk... no... ...General configuration ================================================    Compiler:       g++    CXXFLAGS:       -Wall -fno-rtti -pipe -O3 -g -march=i686 -ffast-math -fomit-frame-pointer     Install path:     /usr/localHighGUI configuration ================================================    Windowing system --------------    Use Carbon / Mac OS X:    no    Use gtk+ 2.x:             yes    Use gthread:              yes    Image I/O ---------------------    Use libjpeg:              yes    Use zlib:                 yes    Use libpng:               yes    Use libtiff:              yes    Use libjasper:            yes    Use libIlmImf:            no    Video I/O ---------------------    Use QuickTime / Mac OS X: no    Use xine:                 no    Use ffmpeg:               yes    Use dc1394 & raw1394:     yes    Use v4l:                  yes    Use v4l2:                 yesWrappers for other languages =========================================    SWIG                          Python                    noAdditional build settings ============================================    Build demo apps           yesNow run make ...

如果出現上述輸出,表明編譯OpenCV所需的軟體基本已經安裝,可以進行下一步。如果提示有需要的軟體未安裝,請安裝後再運行 ./configure 命令,直到提示"Now run make ..."為止。 部分庫的說明: libjasper - The JasPer JPEG-2000 runtime library

備忘:opencv2.2中已經省去了configure 檔案,可以通過cmake安裝,參考http://www.samontab.com/web/2010/04/installing-opencv-2-1-in-ubuntu/

[編輯]

編譯OpenCV
make

2012-11-14 目前較新的opencv2.3.1,用cmake安裝,在centos6.2系統中,推薦這篇文檔:http://my.oschina.net/douzhenjia/blog/32683。而且,現在的linux下C++程式開發,也可以象在VS2008下那樣開發了,採用Eclipse CDT,這個可以直接從Eclipse org網站下載一個下來,不用安裝直接就可以運行內嵌CDT的Eclipse。至於Eclipse的OpenCV編譯環境設定,推薦這篇文檔:http://www.cnblogs.com/shihty/archive/2012/10/24/2737552.html。有這3樣東西,你就可以愉快地開始OpenCV之旅啦!

[編輯]

安裝OpenCV

用root使用者執行

make install

2012-11-14 目前較新的opencv2.3.1,用cmake安裝,在centos6.2系統中,推薦這篇文檔:http://my.oschina.net/douzhenjia/blog/32683; 而且,現在的linux下C++程式開發,也可以象在VS2008下那樣開發了,採用Eclipse CDT,這個可以直接從Eclipse org網站下載一個下來,不用安裝直接就可以運行內嵌CDT的Eclipse。至於Eclipse的OpenCV編譯環境設定,推薦這篇文檔:http://www.cnblogs.com/shihty/archive/2012/10/24/2737552.html; 有這3樣東西,你就可以愉快地開始OpenCV之旅啦! [編輯]

[編輯]

更新動態串連庫

用root使用者執行下面的操作

添加路徑/usr/local/lib到檔案/etc/ld.so.conf,然後運行命令

ldconfig
[編輯]

測試安裝包

測試是否安裝成功,你可以使用以下的命令列編譯位於原始碼包中的drawing.c例子: (在1.0版本中, 位於目錄 sample/c 下)

g++ `pkg-config opencv --libs --cflags opencv` drawing.c -o drawing

成功編譯後你應該能夠可以執行./drawing看到highgui輸出視窗的結果了.

Linux下編譯opencv庫[轉]

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.