ubuntu下运行第一个opencv程序

时间:2022-12-31 09:14:59

首先,测试代码如下:

#include<opencv2/core/core.hpp>
#include<opencv2/highgui/highgui.hpp>
#include<iostream>
using namespace cv;
using namespace std;

int main()
{
    Mat a(Size(3,3),CV_8UC1);
    cout<<a;
    return 0;
}

1.在github上下载opencv源码

2.安装cmake gui版本

在终端输入:sudo apt-get install cmake-gui

3.用cmake编译opencv源码

在终端输入:cmake-gui


ubuntu下运行第一个opencv程序

4.在build文件夹下打开终端:输入指令make


ubuntu下运行第一个opencv程序

5.在终端输入指令make install

6.对测试代码编译

7.运行生成的文件


ubuntu下运行第一个opencv程序


参考文献:

1.在linux环境下编译运行OpenCV程序的两种方法
2.ubuntu直接在当前目录下打开终端terminal的方法