FPS मान प्राप्त करने के लिए, हमने 'get()' के 'get()' कमांड और 'CAP_PROP_FPS' को 'get()' के तर्क के रूप में इस्तेमाल किया। यह तर्क एफपीएस को पूर्णांक रूप में लौटाता है।
कार्यक्रम की शुरुआत में, हमने 'एफपीएस' नामक एक पूर्णांक चर लिया है। तब हमने FPS =cap.get(CAP_PROP_FPS) का उपयोग किया; FPS वैल्यू को वेरिएबल में स्टोर करने के लिए।
निम्न प्रोग्राम वीडियो का FPS प्राप्त करता है और इसे कंसोल विंडो में दिखाता है।
उदाहरण
#include<opencv2/opencv.hpp>//OpenCV header to use VideoCapture class// #include<iostream> using namespace std; using namespace cv; int main() { int FPS;//Declaring an integer variable to store the number of total frames// VideoCapture cap("video1.mp4");//Declaring an object to capture stream of frames from default camera// FPS = cap.get(CAP_PROP_FPS);//Getting the total number of frames// cout << "Total Number of frames are:" << FPS << endl;//Showing the number in console window// system("pause");//Pausing the system to see the result cap.release();//Releasing the buffer memory// return 0; }
इस प्रोग्राम को लॉन्च करने के बाद, हमें कंसोल विंडो में FPS वैल्यू मिलेगी।
आउटपुट