![[OpenCV] 문자열 출력 [OpenCV] 문자열 출력](http://k.kakaocdn.net/dn/dYI8hN/btrRvHnxcP1/s9jGzWRAzZ0j3XPIGzkknK/img.jpg)
openCV에서 영상에 직접 영상 처리 결과 또는 추가적인 정보를 문자열 형태로 나타낼 수 있는 함수를 제공한다. putText(); void putText(InputOutputArray img, const String& text, Point org, int fontFace, double fontScale, Scalar color, int thickness = 1, int lineType_LINE_8, bool bottomLeftOrigin = false); img : 입출력 영상 text : 출력할 문자열 org : 영상에서 문자열을 출력할 위치의 좌측 하단 좌표 fontFace : 폰트 종류로 cv::HersheyFonts에서 선택 가능 fontScale : 폰트 크기 확대/축소 비율 colo.....
원문링크 : [OpenCV] 문자열 출력