“int a=1;” 视频读入到 VideoCapture 类对象之后,紧接着用一个循环将每一帧显示出来。 代码: #include<opencv.hpp> using namespace cv; int main() { VideoCapture capture("C:/Users/齐明洋/Desktop/1.mp4"); while (1) { Mat frame; capture >> frame; imshow("读取视频", frame); waitKey(1...