【python】目标检测结果可视化

文章目录[隐藏]

watermark,type_d3F5LXplbmhlaQ,shadow_50,text_Q1NETiBASmFja2lsaW5hX1N0b25l,size_6,color_FFFFFF,t_70,g_se,x_16

SimHei.ttf文件,请自行下载?

1 代码

import numpy as np
from PIL import Image, ImageFont, ImageDraw
import colorsys
import matplotlib.pyplot as plt


def DisplayDetectResult(img_path, out_classes, out_box, out_confidence):
    # Generate colors for drawing bounding boxes.
    hsv_tuples = [(x / len(out_classes), 1., 1.)
                  for x in range(len(out_classes))]
    colors = list(map(lambda x: colorsys.hsv_to_rgb(*x), hsv_tuples))
    colors = list(map(lambda x: (int(x[0] * 255), int(x[1] * 255), int(x[2] * 255)), colors))

    image = Image.open(img_path)

    fontStyle = 

版权声明:本文为CSDN博主「Jackilina_Stone」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/wss794/article/details/122750991

Jackilina_Stone

我还没有学会写个人说明!

暂无评论

发表评论

相关推荐

Yolo-V5目标检测 项目实战

引言本文将一步一步的指导训练 Yolo-v5并进行推断来计算血细胞并定位它们。我曾试图用 Yolo v3-v4做一个目标检测模型,在显微镜下用血液涂抹的图像上计算红细胞、白细胞和血小板,但是我没有得到我想要的准确度&

YOLOV5 网络模块解析

YOLOV5:训练自己数据集 YOLOV5:Mosaic数据增强 YOLOV5 :网络结构 yaml 文件参数理解 前言 【个人学习笔记记录,如有错误,欢迎指正】 YOL