警告:打开文件时出错 (/build/opencv/modules/videoio/src/cap_ffmpeg_impl.hpp:578)

warning: Error opening file (/build/opencv/modules/videoio/src/cap_ffmpeg_impl.hpp:578)

我无法在 opencv 上访问 ipcamera,我正在使用 ipcctrl 应用程序查看相机预览并且它工作正常,但是当我尝试将 URL 粘贴到我的代码中时它显示 警告: 打开文件时出错 (/build/opencv/modules/videoio/src/cap_ffmpeg_impl.hpp:578) 这里有什么问题?here is the proof that it is working fine in ipcctrl

cv::Mat imgFrame1;
cv::Mat imgFrame2;

cv::VideoCapture capVideo;
const std::string videoStreamAddress = "http://admin:admin@192.168.8.50:8088/mjpeg.cgi?user=USERNAME&password=PWD&channel=0&.mjpg";

std::vector<Blob> blobs;

cv::Point crossingLine[2];

int carCount = 0;
std::ofstream writer;
writer.open("cars.txt");
writer.close();

capVideo.open(videoStreamAddress);
if (!capVideo.open(videoStreamAddress)) {                                                 // if unable to open video file
    std::cout << "error reading video file" << std::endl << std::endl;      // show error message
    _getch();                   // it may be necessary to change or remove this line if not using Windows
    return(0);                                                              // and exit program
}

我已经解决了这个问题,结果是我的视频流地址 URL 不正确,困难的部分是我的相机并不为人所知,并且有一些关于如何配置它的文档。我使用 ispy 应用程序为我的 kedacom 相机生成了一个合适的 URL,并在 VLC 和应用程序以及中提琴上对其进行了测试!成功了。