在我的博文 https://blog.csdn.net/oLinBSoft/article/details/87458103 中实现识别摄像头中的人脸并标注姓名,但cv2.putText() 只能输出英文,中文会乱码
需要在图片中标注中文,需要中文库,我这用的是freetype
安装:
pip3 install freetype-py
安装后 ,可以正常导入
把上面博客中的程序进行改造以显示中文
1. 增加导入模块
from PIL import Image, ImageDraw, ImageFont
import numpy as np
2. 在程序画完框线后,注释掉原来的cv2.putText() 输出文字,改为如下
#在人脸上画一个框
cv2.rectangle(frame, (left, top), (right, bottom), (0, 0, 255), 2)
# 在框底部画一个文本框,并标注姓名
cv2.rectangle(frame, (left, bottom - 35), (right, bottom), (0, 0, 255), cv2.FILLED)
#注释掉原来的字体设置
#font = cv2.FONT_HERSHEY_DUPLEX
#注释掉原来的字体输出
#cv2.putText(frame, n