반응형
#include <opencv2/opencv.hpp> #include <iostream> using namespace std; using namespace cv; int main() { VideoCapture cap(0); if (!cap.isOpened()) { cout << "error" << endl; return 0; } Mat frame,GRAY; while (1) { cap.read(frame); cvtColor(frame, GRAY, COLOR_BGR2GRAY); imshow("video", GRAY); if (waitKey(10) == 27) break; } return 0; } |
반응형
'영상처리' 카테고리의 다른 글
[OpenCV 3.2] 비디오 영상으로부터 findcontours 적용 (0) | 2019.03.28 |
---|---|
[OpenCV 3.2] findcontours 함수를 이용한 외곽선 검출 (0) | 2019.03.28 |
[공부] SGM(Semi Global Matching)을 이용한 UV-disparity 구현 (0) | 2019.03.12 |
다양한 색공간에 대한 이해 (0) | 2019.01.22 |