영상처리
조회수 : 3
윈도우_opencv_빌드   ( 50/52 )
example.cpp 소스 파일 (8/8) 1.        // 화면을 하나로 합치기2.        Mat combined(frame.rows, frame.cols * 2, frame.type());3.        left_side.copyTo(combined(Rect(0, 0, frame.cols, frame.rows)));4.        right_side.copyTo(combined(Rect(frame.cols, 0, frame.cols, frame.rows)));5.        imshow("Hand Detection", combined);6.        if (waitKey(1) == 'q') {7.            break;8.        }9.    }10.    cap.release();11.    destroyAllWindows();12.    return 0;13.}