1 #include<opencv2/opencv.hpp> 2 using namespace cv; 3 int main() 4 { 5 //1.从摄像头读入视频 6 VideoCapture cap(0); 7 //2.循环显示每一帧 8 while (1) 9 { 10 Mat cam; 11 cap >> cam;//获取当前帧图像 12 imshow("相机",cam);//显示当前帧图像 13 waitKey(30);//延时30秒 14 } 15 return 0; 16 }