OpenCV 에선 사각형, 원, 다각형 등 도형에 관한 여러 가지 함수들을 제공한다. rectangle(); void rectangle(InputOutputArray img, Point pt1, Point pt2, const Scalar& color, int thickness = 1, int lineType = LINE_8, int shift = 0); void rectangle(InputOutputArray img, Rect rec, const Scalar& color, int thickness = 1, int linetype = LINE_8, shift = 0); img : 입출력 영상 pt1 : 사각형 꼭지점 좌표 (Point 객체) pt2 : pt1과 대각 방향에 있는 사곽형 꼭지점 좌표 (P..