void cv::fillPoly(
    Mat img,
    Mat pts,
    const Scalar& color,
    int lineType = LINE_8,
    int shift = 0,
    Point offset = Point()
)
void Cv2.FillPoly(
    Mat img,
    Mat pts,
    Scalar color,
    LineTypes lineType = LineTypes.Link8,
    int shift = 0,
    Point? offset = null
)
img = cv2.fillPoly(
    img,
    pts,
    color,
    lineType,
    shift = None,
    offset = None
)



요약(Summary)

이미지에 하나 이상의 다각형을 그립니다.

매개변수(Parameter)

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

윤곽선(pts) 그리려는 다각형

색상(color) 다각형의 색상

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

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

오프셋(offset) 윤곽선 좌푯값에 더해지는 값

반환값(Returns)

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