如何通过C语言优化RTSP取流过程中的错误处理机制?

2026-04-19 01:521阅读0评论SEO基础
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计349个文字,预计阅读时间需要2分钟。

如何通过C语言优化RTSP取流过程中的错误处理机制?

使用 `g++ -o test opencv_demo.cpp` 编译时可能会遇到以下错误:

这是我的代码:

使用g++ opencv_demo.cpp -o test 会报以下错误

如何通过C语言优化RTSP取流过程中的错误处理机制?

这是我的代码:

#include <string> #include <iostream> #include <time.h> #include <opencv2/highgui/highgui.hpp> #include <opencv2/opencv.hpp> #include <opencv2/core.hpp> #include <opencv2/videoio/videoio.hpp> #include <opencv2/imgproc/imgproc_c.h> //#pragma comment(lib, "") using namespace std; using namespace cv; void Video_to_Image(Mat& frame); int main() { //string filename = "Wildlife.wmv"; string filename = "rtsp://admin:abc.1234@10.12.18.131:554"; Mat frame; VideoCapture cap; cap.open(filename); if (!cap.isOpened()) { cerr << "ERROR! Unable to open camera\n"; return -1; } //--- GRAB AND WRITE LOOP cout << "Start grabbing" << endl << "Press any key to terminate" << endl; time_t start_time = time(NULL); for (;;) { // wait for a new frame from camera and store it into 'frame' cap.read(frame); // check if we succeeded if (frame.empty()) { cerr << "ERROR! blank frame grabbed\n"; break; } // show live and wait for a key with timeout long enough to show images imshow("Live", frame); // 每隔2s保存图片 time_t end_time = time(NULL); if ((end_time - start_time) >=2) { cout << "2s capture" << endl; Video_to_Image(frame); start_time = time(NULL); } if (waitKey(5) >= 0) break; } cap.release(); return 0; } void Video_to_Image(Mat& frame) { char image_name[PATH_MAX]; sprintf(image_name, "%s%s", "test_image", ".jpg"); imwrite(image_name, frame); }

解决方案:

g++ `pkg-config opencv --cflags` opencv_demo.cpp -o test `pkg-config opencv --libs`

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持自由互联。

本文共计349个文字,预计阅读时间需要2分钟。

如何通过C语言优化RTSP取流过程中的错误处理机制?

使用 `g++ -o test opencv_demo.cpp` 编译时可能会遇到以下错误:

这是我的代码:

使用g++ opencv_demo.cpp -o test 会报以下错误

如何通过C语言优化RTSP取流过程中的错误处理机制?

这是我的代码:

#include <string> #include <iostream> #include <time.h> #include <opencv2/highgui/highgui.hpp> #include <opencv2/opencv.hpp> #include <opencv2/core.hpp> #include <opencv2/videoio/videoio.hpp> #include <opencv2/imgproc/imgproc_c.h> //#pragma comment(lib, "") using namespace std; using namespace cv; void Video_to_Image(Mat& frame); int main() { //string filename = "Wildlife.wmv"; string filename = "rtsp://admin:abc.1234@10.12.18.131:554"; Mat frame; VideoCapture cap; cap.open(filename); if (!cap.isOpened()) { cerr << "ERROR! Unable to open camera\n"; return -1; } //--- GRAB AND WRITE LOOP cout << "Start grabbing" << endl << "Press any key to terminate" << endl; time_t start_time = time(NULL); for (;;) { // wait for a new frame from camera and store it into 'frame' cap.read(frame); // check if we succeeded if (frame.empty()) { cerr << "ERROR! blank frame grabbed\n"; break; } // show live and wait for a key with timeout long enough to show images imshow("Live", frame); // 每隔2s保存图片 time_t end_time = time(NULL); if ((end_time - start_time) >=2) { cout << "2s capture" << endl; Video_to_Image(frame); start_time = time(NULL); } if (waitKey(5) >= 0) break; } cap.release(); return 0; } void Video_to_Image(Mat& frame) { char image_name[PATH_MAX]; sprintf(image_name, "%s%s", "test_image", ".jpg"); imwrite(image_name, frame); }

解决方案:

g++ `pkg-config opencv --cflags` opencv_demo.cpp -o test `pkg-config opencv --libs`

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持自由互联。