如何在使用 C++ 的 OpenCV 中计算经过时间?


我们将在此了解如何使用 OpenCV 计算经过时间。

以下程序使用 C++ 在 OpenCV 中计算经过时间。

示例

#include<opencv2/opencv.hpp>//OpenCV header to use VideoCapture class//
#include<iostream>
using namespace std;
using namespace cv;
int main() {
   Mat myImage;//Declaring a matrix to load the frames//
   namedWindow("Video Player");//Declaring the video to show the video//
   VideoCapture cap("video.mp4");//Declaring an object to load video from device//
   if (!cap.isOpened()){ //This section prompt an error message if no video stream is found//
      cout << "No video stream detected" << endl;
      system("pause");
      return-1;
   }
   while (true){ //Taking an everlasting loop to show the video//
      cap >> myImage;
      int elapsed_time;//Declaring an integer variable to store the elapsed time//
      elapsed_time=cap.get(CAP_PROP_POS_MSEC);//Reading the elapsed time//
      cout << "Ellapsed time(in second):" << elapsed_time / 1000 << endl;//Showing the elapsed time in seconds//
      if (myImage.empty()){ //Breaking the loop if no video frame is detected//
         break;
      }
      imshow("Video Player", myImage);//Showing the video//
      char c = (char)waitKey(25);//Allowing 25 milliseconds frame processing time and initiating break condition//
      if (c == 27){ //If 'Esc' is entered break the loop//
         break;
      }
   }
   cap.release();//Releasing the buffer memory//
   return 0;
}

该程序将播放视频,并在控制台窗口显示经过时间。

输出


更新于: 10-Mar-2021

370 次浏览

开启你的 职业

完成本课程并获得认证

开始
广告