Reading video/camera code in opencv

Source: Internet
Author: User

It is found that the method for reading videos or USB camera in opencv is so simple. The following is the code for reading cameras in opencv2.31:

Int main () {// open the video file // CV: videocapture capture ("bike. avi "); // 0 open default camera CV: videocapture capture (0); // check whether the video is enabled if (! Capture. isopened () return 1; // get the frame rate double rate = capture. get (cv_cap_prop_fps); bool stop (false); CV: mat frame; // current video frame CV: namedwindow ("extracted frame "); // interval between two frames int delay = 1000/rate; // loop playback of all frames while (! Stop) {// read the next frame if (! Capture. read (FRAME) break; // display the image CV: imshow ("extracted frame", frame) in the window; // press any key to stop the video. // If (CV:: waitkey (Delay)> = 0) // stop = true; CV: waitkey (20);} // close the video file capture. release (); Return 0 ;}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.