pos字体怎么写(OpenCV学习之路-23 图像添加中文文字)

快鱼网 21 0

OpenCV 不支持显示中文字符,使用 cv2.putText() 时添加的文本字符串不能包含中文字符(包括中文标点符号)。在图像中添加中文字符,可以使用 python+opencv+PIL 实现,或使用 python+opencv+freetype 实现。具体方法详见扩展例程 1.32。

扩展例程:1.32 图像中添加中文文字

# 1.32 图像中添加中文文字imgBGR = cv2.imread("../images/imgLena.tif") # 读取彩色图像(BGR)from PIL import Image, ImageDraw, ImageFontif (isinstance(imgBGR, np.ndarray)): # 判断是否 OpenCV 图片类型imgPIL = Image.fromarray(cv2.cvtColor(imgBGR, cv2.COLOR_BGR2RGB))text = "OpenCV2021, 中文字体"pos = (50, 20) # (left, top),字符串左上角坐标color = (255, 255, 255) # 字体颜色textSize = 40drawPIL = ImageDraw.Draw(imgPIL)fontText = ImageFont.truetype("font/simsun.ttc", textSize, encoding="utf-8")drawPIL.text(pos, text, color, font=fontText)imgPutText = cv2.cvtColor(np.asarray(imgPIL), cv2.COLOR_RGB2BGR)cv2.imshow("imgPutText", imgPutText) # 显示叠加图像 imgAddkey = cv2.waitKey(0) # 等待按键命令

(本节完)

标签: 中文

抱歉,评论功能暂时关闭!