#include<opencv2/opencv.hpp> #include<iostream> using namespace std; using namespace cv; int main(int argc,char **argv) { VideoCapture capture(0); namedWindow("myCamera",CV_WINDOW_AUTOSIZE); while(true) { Mat frame; capture>>frame; imshow("myCamera",frame); waitKey(30); } return 0; }
$ g++ `pkg-config opencv --cflags` test.cpp -o test `pkg-config opencv --libs`
注意:这里是``(键盘Tab上面的那个键),而不是单引号' 'ios
$ ./test
注意:可以使用Ctrl + c 终止当前正在运行的程序ide