void cv::circle(
    Mat img,
    Point center,
    int radius,
    const Scalar& color,
    int thickness = 1,
    int lineType = LINE_8,
    int shift = 0 
)
void Cv2.Circle(
    Mat img,
    Point center,
    int radius,
    Scalar color,
    int thickness = 1,
    LineTypes lineType = LineTypes.Link8,
    int shift = 0
)
img = cv2.circle(
    img,
    center,
    radius,
    color,
    thickness = None,
    lineType = None,
    shift = None
)



요약(Summary)

이미지에 원을 그립니다.

매개변수(Parameter)

이미지(img) 원을 그릴려는 이미지

중심점(center) 원의 중심점

반지름(radius) 원의 반지름

색상(color) 원의 색상

두께(thickness) 원의 두께

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

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

반환값(Returns)

이미지(img) 원이 그려진 이미지