Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

วิธีโหลดวิดีโอจากคอมพิวเตอร์ของคุณใน OpenCV โดยใช้ C ++


ในหัวข้อนี้ เราจะรู้วิธีโหลดไฟล์วิดีโอและเล่นโดยใช้ OpenCV และเราต้องใช้วิธีการที่คล้ายกันที่เราได้เรียนรู้ในหัวข้อที่แล้ว ข้อแตกต่างเพียงอย่างเดียวคือแทนที่จะใส่ตัวเลขเป็นอาร์กิวเมนต์ของวัตถุของคลาส 'VideoCapture' และเราต้องใส่เส้นทางของวิดีโอ

โปรแกรมต่อไปนี้สาธิตวิธีการโหลดวิดีโอจากคอมพิวเตอร์ของคุณใน OpenCV โดยใช้ C++

ตัวอย่าง

#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 capture stream of frames from default camera//
   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;
      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;
}

ผลลัพธ์

วิธีโหลดวิดีโอจากคอมพิวเตอร์ของคุณใน OpenCV โดยใช้ C ++