Read notebook built-in camera and edge detection

Source: Internet
Author: User

#include <opencv2\opencv.hpp>  #include <windows.h>using namespace CV;  -----------------------------------the main () function--------------------------------------------//Description: The entry function for the console application, Our program starts here//------------------------------------------------------------------------------------------------- int main ()  {  //"1" read in video Videocapture capture (0); Sleep (1000); Mat edges;//"2" loops show each frame while (1)  {  Mat frame;//defines a mat variable that stores the image for each frame capture>>frame;  Reads the current frame imshow ("read video", frame);  Displays the current frame Cvtcolor (frame, edges, Cv_bgr2gray), blur (edges, edges, Size (3,1)); Canny (edges, edges, 0, 3); Imshow ("After extracting edge", edges); if (Waitkey (+) >= 0) break;}  return 0;     }  

According to the Hair Nebula's error, before reading the camera Sleep (1000) break 1s, remember # include <windows.h>

Read notebook built-in camera and edge detection

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.