【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

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

暂无评论

发表评论

相关推荐

YOLOX:高性能目标检测的最新实践 | 报告详解

近年来,目标检测的工程应用研究中,YOLO系列以快速响应、高精度、结构简单以及容易部署的特点备受工程研究人员的青睐。同时,YOLO系列存在需要手工设定样本正负导致模型泛化能力较差的问题。为了解决此类问题