cv2.putText

简介:
putText(...)
    putText(img, text, org, fontFace, fontScale, color[, thickness[, lineType[, bottomLeftOrigin]]]) -> img
                        文本内容,起点坐标,字体,字体大小,颜色,线宽,线类型(cv2.LINE_AA)
    .   @brief Draws a text string.
    .   
    .   The function putText renders the specified text string in the image. Symbols that cannot be rendered
    .   using the specified font are replaced by question marks. See getTextSize for a text rendering code
    .   example.
    .   
    .   @param img Image.
    .   @param text Text string to be drawn.
    .   @param org Bottom-left corner of the text string in the image.
    .   @param fontFace Font type, see cv::HersheyFonts.
    .   @param fontScale Font scale factor that is multiplied by the font-specific base size.
    .   @param color Text color.
    .   @param thickness Thickness of the lines used to draw a text.
    .   @param lineType Line type. See the line for details.
    .   @param bottomLeftOrigin When true, the image data origin is at the bottom-left corner. Otherwise,
    .   it is at the top-left corner.

目录
相关文章
|
6月前
|
存储 编译器 计算机视觉
cv::Mat
cv::Mat
40 3
|
计算机视觉
Emgu.CV 报错 Emgu.CV.Util.CvException: OpenCV
Emgu.CV 报错 Emgu.CV.Util.CvException: OpenCV 异常信息:Emgu.CV.Util.CvException: OpenCV: 在 Emgu.CV.CvInvoke.CvErrorHandler(Int32 status, IntPtr funcName, IntPtr errMsg, IntPtr fileName, Int32 line, I...
143 1
|
6月前
|
计算机视觉 C++ Python
imshow
imshow
76 3
|
20天前
|
计算机视觉
Opencv学习笔记(五):cv2.putText()和cv2.rectangle()详细理解
这篇文章详细介绍了OpenCV库中的`cv2.putText()`和`cv2.rectangle()`函数的使用方法,并通过一个实战例子展示了如何使用这些函数在图像上绘制文字和矩形框。
94 0
Opencv学习笔记(五):cv2.putText()和cv2.rectangle()详细理解
|
6月前
|
计算机视觉
cv2.putText
cv2.putText
403 1
|
6月前
|
计算机视觉 Python
cv2.polylines
cv2.polylines
258 1
|
计算机视觉
OpenCV-中值滤波cv::medianBlur
OpenCV-中值滤波cv::medianBlur
|
计算机视觉
|
计算机视觉 C++
OpenCV-实现直方图均衡化(对比cv::equalizeHist)
OpenCV-实现直方图均衡化(对比cv::equalizeHist)
192 0
|
存储 计算机视觉
OpenCV矩阵cv::Mat通道和位深的整理(CV_8UC1,CV_32FC1等等)
OpenCV矩阵cv::Mat通道和位深的整理(CV_8UC1,CV_32FC1等等)
1669 0