void cv::putText(
    Mat img,
    const String& text,
    Point org,
    int fontFace,
    double fontScale,
    Scalar color,
    int thickness = 1,
    int lineType = LINE_8,
    bool bottomLeftOrigin = false
)
void Cv2.PutText(
    Mat img,
    string text,
    Point org,
    HersheyFonts fontFace,
    double fontScale,
    Scalar color,
    int thickness = 1,
    LineTypes lineType = LineTypes.Link8,
    bool bottomLeftOrigin = false
)
img = cv2.putText(
    img,
    text, 
    org,
    fontFace,
    fontScale,
    color,
    thickness = None,
    lineType = None,
    bottomLeftOrigin = None
)



요약(Summary)

이미지에 문자열을 그립니다.

매개변수(Parameter)

이미지(img) 문자열을 그릴려는 이미지

문자열(text) 그리려는 문자열

위치(org) 문자열의 좌측 하단 위치

글꼴(fontFace) 문자열의 글꼴

글꼴 크기(fontScale) 글꼴의 배율

두께(thickness) 글꼴의 두께

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

기준점(bottomLeftOrigin) 거짓(False) 값일 경우, 문자열 그리기 기준을 좌측 상단으로 설정

반환값(Returns)

이미지(img) 문자열이 그려진 이미지