资源简介
代码片段和文件信息
# coding=utf-8
# cv2解决绘制中文乱码
import cv2
import numpy
from PIL import Image ImageDraw ImageFont
class Font():
def cv2ImgAddText(img text left top): # 视频帧绘制中文
img = Image.fromarray(cv2.cvtColor(img cv2.COLOR_BGR2RGB))
draw = ImageDraw.Draw(img)
fillColor = (255 0 0)
fontstyle = ImageFont.truetype(“font/simsun.ttc“ 20 encoding=‘utf-8‘)
draw.text((left top - 20) text font=fontstyle fill=fillColor)
return cv2.cvtColor(np.asarray(img) cv2.COLOR_RGB2BGR)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2020-06-12 07:18 YOLOv3-Dishes-identification-master\
文件 1201 2020-06-12 07:18 YOLOv3-Dishes-identification-master\.gitignore
目录 0 2020-06-12 07:18 YOLOv3-Dishes-identification-master\.idea\
文件 47 2020-06-12 07:18 YOLOv3-Dishes-identification-master\.idea\.gitignore
目录 0 2020-06-12 07:18 YOLOv3-Dishes-identification-master\.idea\inspectionProfiles\
文件 174 2020-06-12 07:18 YOLOv3-Dishes-identification-master\.idea\inspectionProfiles\profiles_settings.xm
文件 672 2020-06-12 07:18 YOLOv3-Dishes-identification-master\.idea\keras-yolo3-master.iml
文件 204 2020-06-12 07:18 YOLOv3-Dishes-identification-master\.idea\misc.xm
文件 288 2020-06-12 07:18 YOLOv3-Dishes-identification-master\.idea\modules.xm
文件 1950356 2020-06-12 07:18 YOLOv3-Dishes-identification-master\Demo.gif
文件 1064 2020-06-12 07:18 YOLOv3-Dishes-identification-master\LICENSE
文件 18034 2020-06-12 07:18 YOLOv3-Dishes-identification-master\MainWindow_1.0.py
文件 18018 2020-06-12 07:18 YOLOv3-Dishes-identification-master\MainWindow_2.0.py
文件 4399 2020-06-12 07:18 YOLOv3-Dishes-identification-master\PriceDialog.py
文件 524 2020-06-12 07:18 YOLOv3-Dishes-identification-master\README.md
文件 338 2020-06-12 07:18 YOLOv3-Dishes-identification-master\SingalTest.py
文件 553 2020-06-12 07:18 YOLOv3-Dishes-identification-master\addFont.py
文件 22 2020-06-12 07:18 YOLOv3-Dishes-identification-master\coco.names
文件 1323 2020-06-12 07:18 YOLOv3-Dishes-identification-master\coco_annotation.py
文件 10093 2020-06-12 07:18 YOLOv3-Dishes-identification-master\convert.py
文件 5707 2020-06-12 07:18 YOLOv3-Dishes-identification-master\darknet53.cfg
目录 0 2020-06-12 07:18 YOLOv3-Dishes-identification-master\font\
文件 127344 2020-06-12 07:18 YOLOv3-Dishes-identification-master\font\FiraMono-Medium.otf
文件 4432 2020-06-12 07:18 YOLOv3-Dishes-identification-master\font\SIL Open Font License.txt
文件 10500792 2020-06-12 07:18 YOLOv3-Dishes-identification-master\font\simsun.ttc
文件 3482 2020-06-12 07:18 YOLOv3-Dishes-identification-master\kmeans.py
文件 9582 2020-06-12 07:18 YOLOv3-Dishes-identification-master\mainUI.py
目录 0 2020-06-12 07:18 YOLOv3-Dishes-identification-master\model_data\
文件 22 2020-06-12 07:18 YOLOv3-Dishes-identification-master\model_data\coco_classes.txt
文件 50 2020-06-12 07:18 YOLOv3-Dishes-identification-master\model_data\tiny_yolo_anchors.txt
文件 22 2020-06-12 07:18 YOLOv3-Dishes-identification-master\model_data\voc_classes.txt
............此处省略16个文件信息
- 上一篇:视觉处理(test_shape.py)
- 下一篇:爬取上百张妹子图源码可直接运行
相关资源
- 利用CNN网络实现mnist图像分类,手动实
- 机器学习numpy和pandas基础
- Python学习全系列教程永久可用
- python机器学习Sebastian Raschka中文最新完
- Python-DeepMoji模型的pyTorch实现
- 基于自编写的随机森林算法的adult数据
- Deep Learning Cookbook_ practical recipes to g
- 《机器学习实战》源代码Python3
- 深度学习视频中的行为识别
- Python-使用DeepFakes实现YouTube视频自动换
- deep learning with python 中文版
- Introduction to machine learning with python (
- python新浪微博爬虫,爬取微博和用户
- 渗透测试学习资料
- 测试工程师相关学习视频(包含pyth
- Python-一系列高品质的动漫人脸数据集
- Python-Insightface人脸检测识别的最小化
- 非线性回归Python代码
- 093 2018北风网人工智能视频(完结)转
- python的色情图片识别
- 小甲鱼-零基础入门学习Python.pdf
- 贝叶斯网络程序
- K-SVD稀疏字典学习去噪
- 吴恩达深度学习超参数调制完整程序
- 《机器学习实战》Python3代码
- Python3学习笔记
- 深度学习入门 基于python理论与实现
- Python-自然场景文本检测PSENet的一个
- Python-在特征金字塔网络FPN的Pytorch实现
- Python-PyTorch实时多人姿态估计项目的实
评论
共有 条评论