opencv c++配置vscode ubuntu,编译器和调制器如何配置?
时间: 2023-09-04 18:11:36 浏览: 128
Vscode C++的基础文件配置,直接复制,打开vscode即可使用
要在VS Code中配置OpenCV C++,您需要安装以下内容:
1. 安装OpenCV库
在Ubuntu上,您可以使用以下命令安装OpenCV:
```
sudo apt-get install libopencv-dev
```
2. 安装C++编译器
您可以使用以下命令安装g++编译器:
```
sudo apt-get install g++
```
3. 安装调试器
您可以使用以下命令安装GDB调试器:
```
sudo apt-get install gdb
```
4. 配置VS Code
在VS Code中,您需要安装以下扩展:
- C/C++扩展
- C++ Intellisense扩展
- Debugger for C++扩展
在.vscode文件夹中创建一个名为c_cpp_properties.json的文件,并使用以下内容进行配置:
```
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/include",
"/usr/local/include",
"/usr/include/opencv4"
],
"defines": [],
"compilerPath": "/usr/bin/g++",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64"
}
],
"version": 4
}
```
在.vscode文件夹中创建一个名为launch.json的文件,并使用以下内容进行配置:
```
{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/<your_executable>",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
```
将 <your_executable> 替换为您的可执行文件的名称。
现在,您可以在VS Code中为OpenCV C++项目编写代码,并使用g++编译器和GDB调试器进行调试。
阅读全文