কম্পিউটার

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 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 current_Frame;//Declaring an integer variable to store the position of the current frame//
      current_Frame = cap.get(CAP_PROP_POS_FRAMES);//Reading the position of current frame//
      if (myImage.empty()){ //Breaking the loop if no video frame is detected//
         break;
      }
      cout << "Current Frame Number:" << current_Frame << endl;
      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;
}

এই প্রোগ্রামটি ভিডিও চালাবে এবং কনসোল উইন্ডোতে বর্তমান ফ্রেমের অবস্থান দেখাবে।

আউটপুট

C++ ব্যবহার করে ওপেনসিভিতে বর্তমান ফ্রেমের অবস্থান কীভাবে পাবেন?

C++ ব্যবহার করে ওপেনসিভিতে বর্তমান ফ্রেমের অবস্থান কীভাবে পাবেন?


  1. কিভাবে C++ ব্যবহার করে OpenCV-তে ডিফল্ট ক্যামেরা থেকে ভিডিও ক্যাপচার করবেন?

  2. সি++ ব্যবহার করে ওপেনসিভিতে একটি চিত্রের উজ্জ্বলতা কীভাবে পরিবর্তন করবেন?

  3. সি++ ব্যবহার করে ওপেনসিভিতে একটি নির্দিষ্ট পিক্সেলের মান কীভাবে পাবেন?

  4. C++ ব্যবহার করে ওপেনসিভিতে একটি ছবির চ্যানেলের সংখ্যা কীভাবে গণনা করা যায়?