当前位置:   article > 正文

python中cv2,等等如何修改为中文字体显示,这里以人脸表情识别中文标签为例_cv2显示中文

cv2显示中文

想必大家在使用python过程中都会遇到,想要显示中文的时候,但是py基本上都是英文字体,下面我将给大家提供一个比较好的解决方案:

首先下载字体包

方法:
我使用的是思源黑体,思源黑体是 Adobe 与 Google 推出的一款开源字体。
下载地址:
官网:https://source.typekit.com/source-han-serif/cn/
在这里插入图片描述

Github地址:https://github.com/adobe-fonts/source-han-sans/tree/release/OTF/SimplifiedChinese
在这里插入图片描述
在这里插入图片描述

部署字体包

将你下载好的字体包SourceHanSansSC-Bold.otf移动到你需要用到的项目中
在这里插入图片描述

代码实现部分

导入模块

from PIL import ImageFont, ImageDraw
  • 1

加载中文字体文件

font_path = "SourceHanSansSC-Bold.otf"
font = ImageFont.truetype(font_path, 30)
  • 1
  • 2

在画面中实现中文标签
这里我用了一个列表存放表情
EMOTIONS = [‘惊讶’, ‘恐惧’, ‘厌恶’, ‘开心’, ‘伤心’, ‘愤怒’, '中性 ']
在这里插入图片描述

            # 在视频帧上显示表情标签
            cv2.rectangle(frame, (x, y), (x + w, y + h), (255, 0, 0), 2)
            pil_img = Image.fromarray(frame)
            draw = ImageDraw.Draw(pil_img)
            draw.text((x, y - 10), emotion_label, font=font, fill=(0, 255, 0))
            # 将PIL图像转换回OpenCV格式
            cv_img = np.array(pil_img)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

可以看到我将cv图片转换为了Image图片

pil_img = Image.fromarray(frame)
  • 1

cv2.rectangle(frame, (x, y), (x + w, y + h), (255, 0, 0), 2): 这行代码在视频帧frame上绘制一个矩形框,矩形框的左上角坐标是(x, y),右下角坐标是(x + w, y + h),颜色是蓝色(255, 0, 0),线宽是2像素。

pil_img = Image.fromarray(frame): 这行代码将OpenCV格式的图像frame转换为PIL格式的图像pil_img,以便后续在图像上绘制文本。

draw = ImageDraw.Draw(pil_img): 这行代码创建了一个ImageDraw对象draw,用于在PIL图像上进行绘制操作。

draw.text((x, y - 10), emotion_label, font=font, fill=(0, 255, 0)): 这行代码在PIL图像上的坐标(x, y - 10)处绘制文本emotion_label,使用指定的字体font和填充颜色(0, 255, 0)。

cv_img = np.array(pil_img): 这行代码将PIL格式的图像pil_img转换回OpenCV格式的图像cv_img,以便后续显示在窗口中。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/857732
推荐阅读
相关标签
  

闽ICP备14008679号