void cv::rectangle(
    Mat img,
    Point pt1,
    Point pt2,
    const Scalar& color,
    int thickness = 1,
    int lineType = LINE_8,
    int shift = 0 
)
void Cv2.Rectangle(
    Mat img,
    Point pt1,
    Point pt2,
    Scalar color,
    int thickness = 1,
    LineTypes lineType = LineTypes.Link8,
    int shift = 0
)
img = cv2.rectangle(
    img,
    pt1,
    pt2,
    color,
    thickness = None,
    lineType = None,
    shift = None
)



요약(Summary)

이미지에 사각형을 그립니다.

매개변수(Parameter)

이미지(img) 사각형을 그릴려는 이미지

지점1(pt1) 사각형의 좌측 상단 좌표

지점2(pt2) 사각형의 우측 하단 좌표

색상(color) 사각형의 색상

두께(thickness) 사각형의 두께

선형 타입(lineType) 선의 유형 설정

비트 시프트(shift) 소수점 이하의 값이 포함된 실숫값 좌표로 그리기 위한 비트 수

반환값(Returns)

이미지(img) 사각형이 그려진 이미지