zoukankan      html  css  js  c++  java
  • ubuntu安装opencv的方法

    ubuntu安装opencv的方法主要有两种:

    1. apt-get方式
    2. 源代码方式

    第一种方式安装的opencv版本一般较低,且不包含ffmpeg解码等高级功能,若要用到ffmpeg必须要从源码进行安装。

    第一种方式直接输入命令

    sudo apt-get update
    sudo apt-get install libcv-dev
    

    第二种方式从源代码进行安装,输入以下指令

    sudo apt-get install cmake
    sudo apt-get install python-devel numpy
    sudo apt-get install gcc gcc-c++
    
    sudo apt-get install gtk2-devel
    sudo apt-get install libv4l-devel
    sudo apt-get install ffmpeg-devel
    sudo apt-get install gstreamer-plugins-base-devel
    
    sudo apt-get install libpng-devel
    sudo apt-get install libjpeg-turbo-devel
    sudo apt-get install jasper-devel
    sudo apt-get install openexr-devel
    sudo apt-get install libtiff-devel
    sudo apt-get install libwebp-devel
    
    sudo apt-get install git
    git clone https://github.com/opencv/opencv.git
    
    mkdir build
    cd build
    
    cmake ../
    
    make
    sudo make install
    
    import cv2 as cv
    print(cv.__version__)
    

    若出现编译报错,一般可以在opencv的github仓库issue中找到解决方案。

  • 相关阅读:
    UI自动化测试框架
    Pyse( selenium-api的二次封装)
    Selenium之webdriverAPI
    selenium 基础之定位方式
    html综合应用
    html基础之js操作
    html基础之Dom操作
    (九)Locust 参数化
    (八)Locust 设置断言
    (七)Locust 的类和方法
  • 原文地址:https://www.cnblogs.com/muyangshaonian/p/9773859.html
Copyright © 2011-2022 走看看