код в моем c_cpp_properties.json
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/include",
"/usr/local/include",
"/home/kartik/open-CV/opencv-4.0.0-alpha/include",
"/usr/local/include/opencv4",
"/home/kartik/open-CV/opencv-4.0.0-alpha/"
],
"defines": [],
"compileCommands": "<path to your compile commands.json file>",
"compilerPath": "/usr/bin/gcc",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64",
"C_Cpp.intelliSenseEngine": "Tag Parser"
}
],
"version": 4
}
Код в файле tasks.json
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "g++",
"args": [
// Ask msbuild to generate full paths for file names.
"/property:GenerateFullPaths=true",
"/t:build"
],
"group": {"kind": "build", "isDefault":true},
"presentation": {
// Reveal the output only if unrecognized errors occur.
"reveal": "silent"
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile"
}
]
}
Я изменил настройки в файлах .json кода Visual Studio, как показано на фотографиях.Но я все еще не могу использовать библиотеки openCV в коде Visual Studio.
Буду благодарен, если кто-то может помочь мне в этой проблеме.Я перепробовал все решения с разных сайтов, но ни один из них не работает.
Kartik