码迷,mamicode.com
首页 > 编程语言 > 详细

python opencv3 向图像里写字

时间:2018-08-05 23:27:23      阅读:559      评论:0      收藏:0      [点我收藏+]

标签:port   odi   .com   window   lin   read   imshow   win   enc   

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 向图像里写字

标签:port   odi   .com   window   lin   read   imshow   win   enc   

原文地址:https://www.cnblogs.com/Lin-Yi/p/9427736.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!