python opencv3 向图像里写字
Posted 稀里糊涂林老冷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python opencv3 向图像里写字相关的知识,希望对你有一定的参考价值。
git:https://github.com/linyi0604/Computer-Vision
1 # coding:utf-8
2
3 import cv2
4
5 img = cv2.imread("../data/mm1.jpg", cv2.IMREAD_GRAYSCALE)
6
7 img = cv2.putText(img, "hello world!", (50, 50), cv2.FONT_HERSHEY_SIMPLEX, 1.2, (0, 255, 0), 2)
8 """
9 cv2.putText(图像, 文字, (x, y), 字体, 大小, (b, g, r), 宽度)
10 """
11
12 cv2.imshow("", img)
13 cv2.waitKey()
14 cv2.destroyAllWindows()
以上是关于python opencv3 向图像里写字的主要内容,如果未能解决你的问题,请参考以下文章
使用 Python 和 OpenCV3 检测流程图中的文本区域
带有 Python 3 的 opencv3,imshow() 不显示图像