polylines
void cv::polylines(
Mat img,
Mat pts,
bool isClosed,
const Scalar& color,
int thickness = 1,
int lineType = LINE_8,
int shift = 0
)
void Cv2.Polylines(
Mat img,
Mat pts,
bool isClosed,
Scalar color,
int thickness = 1,
LineTypes lineType = LineTypes.Link8,
int shift = 0
)
img = cv2.polylines(
img,
pts,
isClosed,
color,
thickness = None,
lineType = None,
shift = None
)
Important:
입력 이미지에 그리기 함수를 직접 적용해 입력 이미지 자체가 변경됩니다.
Tip:
두께(thickness)가 음수일 경우, 채워진 다각형로 그립니다.
요약(Summary)
이미지에 하나 이상의 다각형을 그립니다.
매개변수(Parameter)
이미지(img)
다각형을 그릴려는 이미지
윤곽선(pts)
그리려는 다각형
닫힘 여부(isClosed)
마지막 정점과 첫 번째 정점의 연결 여부
색상(color)
다각형의 색상
두께(thickness)
다각형의 두께
선형 타입(lineType)
선의 유형 설정
비트 시프트(shift)
소수점 이하의 값이 포함된 실숫값 좌표로 그리기 위한 비트 수
반환값(Returns)
이미지(img) 다각형이 그려진 이미지