linux下vscode配置opencv
时间: 2023-04-28 14:04:58 浏览: 146
在Mac上使用c++在vscode中创建opencv项目.zip
1. 安装OpenCV库:在Linux系统中,可以使用包管理器安装OpenCV库,例如在Ubuntu系统中,可以使用以下命令安装:
sudo apt-get install libopencv-dev
2. 安装VSCode:在官网上下载VSCode的Linux版本,然后解压缩到指定目录即可。
3. 安装C++插件:在VSCode中安装C++插件,可以通过Extensions菜单进行安装。
4. 配置编译器:在VSCode中打开一个C++文件,然后按下Ctrl+Shift+B,选择“配置任务”,然后选择“C++编译器”,然后在弹出的窗口中输入以下内容:
{
"version": "2..",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "g++",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
5. 配置OpenCV库:在VSCode中打开一个C++文件,然后按下Ctrl+Shift+P,选择“C++: Edit Configurations”,然后在弹出的窗口中输入以下内容:
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/include/opencv4"
],
"defines": [],
"compilerPath": "/usr/bin/g++",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64"
}
],
"version": 4
}
6. 编写代码:在VSCode中打开一个C++文件,然后编写OpenCV代码,例如:
#include <opencv2/opencv.hpp>
using namespace cv;
int main() {
Mat img = imread("test.jpg");
imshow("Image", img);
waitKey();
return ;
}
7. 编译运行:在VSCode中按下Ctrl+Shift+B,选择“build”,然后在终端中输入以下命令运行程序:
./test
以上就是在Linux下使用VSCode配置OpenCV的步骤。
阅读全文