void cv::drawMarker(
    Mat img,
    Point position,
    const Scalar& color,
    int markerType = MARKER_CROSS,
    int markerSize = 20,
    int thickness = 1,
    int line_type = 8 
)
void Cv2.DrawMarker(
    Mat img,
    Point position,
    Scalar color,
    MarkerTypes markerType = MarkerTypes.Cross,
    int markerSize = 20,
    int thickness = 1,
    LineTypes lineType = LineTypes.Link8
)
img = cv2.drawMarker(
    img,
    position,
    color,
    markerType,
    markerSize = None,
    thickness = None,
    line_type = None
)



요약(Summary)

이미지에 특정 마커를 그립니다.

매개변수(Parameter)

이미지(img) 마커를 그릴려는 이미지

위치(position) 마커의 위치

색상(color) 마커의 색상

마커 모양(markerType) 마커의 형태

마커 크기(markerSize) 마커의 크기

두께(thickness) 마커의 두께

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

반환값(Returns)

이미지(img) 마커가 그려진 이미지