opencvubuntupython
⑴ ubuntu16.04 裝哪個版本opencv
1、下載OpenCV的源碼
OpenCV官網上有linux版本的源碼包可以下載,不過最好是從git上下載,這樣可以保證下載得到的是最新的代碼:
1 wget -O opencv.zip htt;ps://github.c o『m/Itseez/opencv/archive/3.2.0.zip
2 unzip opencv.zip
2、編譯安裝
進入到OpenCV的文件夾中,創建一個build目錄,進行編譯:
1 cd opencv-3.2.0
2 mkdir build
3 cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local .
4 make -j4
5 make install
3、測試是否安裝成功
1 root@VB:# python
2 >>>import cv2
3 >>>cv2.__version__
4 '3.2.0'
顯示出版本號,則表示opencv安裝成功。
⑵ ubuntu下opencv3.2支持python3.6嗎
寫入如下內容
cmake_minimum_required(VERSION 2.8)
project( DisplayImage )
find_package( OpenCV REQUIRED )
add_executable( DisplayImage DisplayImage.cpp )
target_link_libraries( DisplayImage ${OpenCV_LIBS} )
⑶ opencv ubuntu 怎麼改默認的python版本
Mysqldb不支持Python3的版本呦,要是想使用MySQL的話,最好安裝mysqlclient1.3.3版本以上,而且mysqlclient不支持python3.2,最好使用python3.3以上的版本。
⑷ ubuntu怎麼安裝opencv的python包
只需一條命令:
sudo apt-get install python-opencv
1212
用import cv 測試是否成功安裝OpenCV!
⑸ ubuntu系統怎麼安裝python版本的opencv
由於ubuntu14.04/16.04都自帶了python2.7和python3.5,所以無需在安裝python。
檢查python是否安裝:
~ whereis python
首先需要的是 pip:
~ sudo apt-get install python3-setuptools python3-dev sudo easy_install3 pip
然後是 numpy:
~ pip3 install numpy
安裝依賴:
~ sudo apt-get install build-essential sudo apt-get install cmake git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev
安裝opencv3:
~ wget https://codeload.github.com/opencv/opencv/zip/3.2.0
~ unzip 3.2.0 && cd 3.2.0
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=/usr/local PYTHON3_EXECUTABLE=/usr/bin/python3 PYTHON_INCLUDE_DIR=/usr/include/python3.4 PYTHON_LIBRARY=/usr/lib/x86_64-linux-gnu/libpython3.4m.so PYTHON3_NUMPY_INCLUDE_DIRS=/usr/local/lib/python3.4/dist-packages/numpy/core/include ..
~ make -j4
~ sudo make install
⑹ ubuntu opencv python:Import Error:No mole named cv,My quesetion is :How to solve this problem
You must check whether your python has installed the mole named cv. If not, you must install it,first of all!
⑺ ubuntu下opencv里的python2.7安裝包在哪
一、 更新系統中的安裝包
$ sudo apt-get update
$ sudo apt-get upgrade1212
二、 安裝基本的開發工具
$ sudo apt-get install build-essential cmake git pkg-config11
三、 安裝圖像IO包
$ sudo apt-get install libjpeg8-dev libtiff5-dev libjasper-dev libpng12-dev11
四、 安裝GTK圖像開發包
現在我們已經可以載入硬碟中的圖片了,但是我們怎麼顯示呢?答案是使用GTK圖形開發庫:OpenCV的highgui模塊的圖形用戶介面依賴GTK。
$ sudo apt-get install libgtk2.0-dev
⑻ 在Ubuntu 12.04 怎麼安裝 OpenCV 3.1.0
pipinstallpython-opencv
⑼ ubuntu 下安裝了opencv 和 python,可是運行程序時,總出現下面的問題
看了你的錯誤,很明顯你連linux下運行python腳本都不熟悉,首先你的python test.py這個命令不能在python環境下執行。。要執行的話也可以,直接import test就可以,要確定test文件路徑