gpt4 book ai didi

c++ - 我该如何解决 "Unable to open ' raise.c' “错误?(VSCODE,LINUX)

转载 作者:行者123 更新时间:2023-11-28 04:03:35 27 4
gpt4 key购买 nike

(操作系统和版本:Ubuntu 18.4,VS代码版本:Vscode 1.4,C/C++扩展版本:0.26)

你好,我已经阅读了所有关于“raise.c”的文章,但没有一篇能解决我的问题,我只是写了一个简单的 OpenCV 代码来捕获网络摄像头的帧。每次我运行我的代码时,它经常显示错误。错误信息是:

Unable to open 'raise.c': Unable to read file (Error: File not found (/build/glibc-OTsEL5/glibc-2.27/sysdeps/unix/sysv/linux/raise.c)).

launch.json 是:

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "g++ build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "g++ build active file",
"miDebuggerPath": "/usr/bin/gdb"
}
]
}

tasks.json 是:

{
"tasks": [
{
"type": "shell",
"label": "g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}",
"`pkg-config",
"--libs",
"--cflags",
"opencv4`"

],
"options": {
"cwd": "/usr/bin"
}
}
],
"version": "2.0.0"
}

那么我该如何解决这个问题呢?有什么办法可以解决。我是一名初级程序员。

第二个问题是每次我运行这段代码时,我的网络摄像头都会卡住,我必须使用“force quite”底部。为什么我的网络摄像头卡住?欢迎任何想法。谢谢。 (我用的是ubuntu,我的IDE是Vscode)

最佳答案

经过3天的努力,我终于找到了解决方案。我正在为下一代编写解决方案。没有必要在互联网上搜索你找不到任何东西:D

好的,如果你想解决你需要重新安装 OpenCV 并关闭所有标志的问题。这是一个错误。我使用的标志是:

cmake -D BUILD_TIFF=ON -D WITH_CUDA=OFF -D ENABLE_AVX=OFF -D
WITH_OPENGL=ON -D WITH_OPENCL=OFF -D WITH_IPP=OFF -D WITH_TBB=ON -D
BUILD_TBB=ON -D WITH_EIGEN=OFF -D WITH_V4L=OFF -D WITH_VTK=OFF -D
BUILD_TESTS=OFF -D BUILD_PERF_TESTS=OFF -D CMAKE_BUILD_TYPE=RELEASE -D
CMAKE_INSTALL_PREFIX=/usr/local -D
OPENCV_EXTRA_MODULES_PATH=./../opencv_contrib/modules ..

用正确的路径填写 OPENCV_EXTRA_MODULES_PATHCMAKE_INSTALL_PREFIX=/usr/local!

就这样吧祝你好运。

关于c++ - 我该如何解决 "Unable to open ' raise.c' “错误?(VSCODE,LINUX),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59126945/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com