void cv::fillConvexPoly(
    Mat img,
    Mat points,
    const Scalar& color,
    int lineType = LINE_8,
    int shift = 0 
)
void Cv2.FillConvexPoly(
    Mat img,
    IEnumerable<Point> pts,
    Scalar color,
    LineTypes lineType = LineTypes.Link8,
    int shift = 0
)
img = cv2.fillConvexPoly(
    img,
    points,
    color,
    lineType = None,
    shift = None
)



요약(Summary)

이미지에 윤곽선 영역 중 볼록(Convex)한 영역만 채워 그립니다.

매개변수(Parameter)

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

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

색상(color) 다각형의 색상

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

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

반환값(Returns)

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