gpt4 book ai didi

c++ - opencv 打开文件时出错找不到路径为 'D://wade//frame%3d.jpg' 的文件

转载 作者:行者123 更新时间:2023-11-28 01:52:51 30 4
gpt4 key购买 nike

我刚刚在处理我的阅读图像序列。有一件事真的让我很困惑。我收到这个错误,我不知道如何解决。所有其他答案都无法解决我的问题。

[image2 @ 0000015ee5876620] Could find no file with with path 'D://wade//frame%3d.jpg' and index in the range 0-4 warning: Error opening file (../../modules/highgui/src/cap_ffmpeg_impl.hpp:537)

有和我一样经历的吗?你是怎么解决的?谢谢

顺便说一句,这是我读取顺序图像的代码。可能是代码问题。

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

int main()
{
string first_file = "D://wade//frame%3d.jpg";
VideoCapture sequence(first_file);

Mat image;
namedWindow("Image sequence");

while (1){
sequence >> image;
if (image.empty()) break;
imshow("Image sequence", image);
waitKey(5);
}

cout << "End of Sequence" << endl;
waitKey();

return 0;
}

感谢帮助:)

最佳答案

尝试使用

\\ 

代替

//

同时尝试更改文件的名称。

关于c++ - opencv 打开文件时出错找不到路径为 'D://wade//frame%3d.jpg' 的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42302456/

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