绘制PR曲线[通俗易懂]

绘制PR曲线[通俗易懂]一、获取txt文件运行darknet官方代码中的darknetdetectorvaliddatacfgweight指令(例如:darknet.exedetectorvaliddata/koujian/koujian.datacfg/yolov3-tiny11.cfgbackup/yolov3-tiny11_last.weights),可以在result/目录下得到网络检测的输出txt文件:包括检测的图像名字、类别、概率、边界框位置(左上角和右下角):二.新建两个文件:rev

大家好,又见面了,我是你们的朋友全栈君。

一、 获取txt文件

运行darknet官方代码中的darknet detector valid data cfg weight指令(例如:
darknet.exe detector valid data/koujian/koujian.data cfg/yolov3-tiny11.cfg backup/yolov3-tiny11_last.weights),可以在result/目录下得到网络检测的输出txt文件:包括检测的图像名字、类别、概率、边界框位置(左上角和右下角):
在这里插入图片描述

二.新建两个文件:

  1. reval_voc_py3.py
#!/usr/bin/env python
import os, sys, argparse
import numpy as np
import _pickle as cPickle
from voc_eval_py3 import voc_eval
import matplotlib.pyplot as plt
def do_python_eval(label_path, valid_file, classes, output_dir = 'results'):
cachedir = os.path.join('./', 'annotations_cache')
aps = []
use_07_metric = False
print('VOC07 metric? ' + ('Yes' if use_07_metric else 'No'))
if not os.path.isdir(output_dir):
os.mkdir(output_dir)
for i, cls in enumerate(classes):
if cls == '__background__':
continue
rec, prec, ap = voc_eval(
label_path,
valid_file,  cls, cachedir, ovthresh=0.5,
use_07_metric=use_07_metric)
aps += [ap]
print('AP for {} = {:.4f}'.format(cls, ap))
with open(os.path.join(output_dir, cls + '_pr.pkl'), 'wb') as f:
cPickle.dump({ 
'rec': rec, 'prec': prec, 'ap': ap}, f)
print('Mean AP = {:.4f}'.format(np.mean(aps)))
print('~~~~~~~~')
print('Results:')
for ap in aps:
print('{:.3f}'.format(ap))
print('{:.3f}'.format(np.mean(aps)))
fr = open(cls + '_pr.pkl','rb')
inf = cPickle.load(fr)
fr.close()
x=inf['rec']
y=inf['prec']
fig = plt.figure(1, dpi=160)
ax = fig.add_subplot(1,1,1)
ax.plot(x, y, label='PR')
#ax.plot(result['Avg Recall'].values, label='Avg Recall')
#plt.grid()
ax.legend(loc='upper right')
ax.set_ylim([0.6, 1.04])
ax.set_xlim([0.0, 1.05])
ax.set_title('PR curves')
ax.set_xlabel('recall')
ax.set_ylabel('precision')
ax.spines['top'].set_visible(False)     #去掉上边框
ax.spines['right'].set_visible(False)   #去掉右边框
fig.savefig('PR')
plt.savefig("PR.svg", format="svg")
''' x=inf['rec'] y=inf['prec'] plt.figure() plt.xlabel('recall') plt.ylabel('precision') plt.title('PR cruve') plt.ylim([0.6, 1.05]) plt.plot(x,y, label='PR') plt.legend(loc= 'upper right') plt.show() print('AP:',inf['ap']) '''
if __name__ == '__main__':
label_path = r'D:\darknet\darknet-master\build\darknet\x64\data\koujian\valid'  		#label文件夹(验证集所在位置)
valid_file = r'comp4_det_test_koujian.txt'						#valid命令生成的txt文件,在result/目录下。 
name_path = r'D:\darknet\darknet-master\build\darknet\x64\data\koujian\koujian.names' 	#name文件
output_dir = os.path.abspath('./')			 		#pkl保存路径
with open(name_path, 'r') as f:	     
lines = f.readlines()
classes = [t.strip('\n') for t in lines]
print('Evaluating detections')
do_python_eval(label_path, valid_file, classes, output_dir)

其中需要修改:
(1). label_path # label文件夹,标注txt和图像应在同一目录下
(2). valid_file # valid命令生成的txt文件,在result/目录下。
(3). name_path # name文件
(4). output_dir # 生成的pkl保存路径

2 voc_eval_py3.py

import xml.etree.ElementTree as ET
import os
import _pickle as cPickle
import numpy as np
import cv2
def parse_rec(label_path, label_name):
objects = []
label_file = os.path.join(label_path, label_name + '.txt')
img_file = os.path.join(label_path, label_name + '.jpg')
height, width, _ = cv2.imread(img_file).shape
with open(label_file) as f:
for line in f.readlines():
obj_struct = { 
}
obj_struct['name'] = 'koujian'	#需要修改成自己的names
obj_struct['difficult'] = int(0)
center_x, center_y, width_b, height_b =[float(x) for x in line.split()[1:]]
obj_struct['bbox'] = [int(center_x * width - width * width_b / 2.0),
int(center_y * height - height * height_b / 2.0),
int(center_x * width + width * width_b / 2.0),
int(center_y * height + height * height_b / 2.0)]
objects.append(obj_struct)
return objects
def voc_ap(rec, prec, use_07_metric=False):
if use_07_metric:
# 11 point metric
ap = 0.
for t in np.arange(0., 1.1, 0.1):
if np.sum(rec >= t) == 0:
p = 0
else:
p = np.max(prec[rec >= t])
ap = ap + p / 11.
else:
# correct AP calculation
# first append sentinel values at the end
mrec = np.concatenate(([0.], rec, [1.]))
mpre = np.concatenate(([0.], prec, [0.]))
# compute the precision envelope
for i in range(mpre.size - 1, 0, -1):
mpre[i - 1] = np.maximum(mpre[i - 1], mpre[i])
# to calculate area under PR curve, look for points
# where X axis (recall) changes value
i = np.where(mrec[1:] != mrec[:-1])[0]
# and sum (\Delta recall) * prec
ap = np.sum((mrec[i + 1] - mrec[i]) * mpre[i + 1])
return ap
def voc_eval(label_path,
detpath,
classname,
cachedir,
ovthresh=0.5,
use_07_metric=False):
# first load gt
if not os.path.isdir(cachedir):
os.mkdir(cachedir)
cachefile = os.path.join(cachedir, 'annots.pkl')
label_file = []
for f in os.listdir(label_path):
file, tmp = f.split('.')
if  tmp == 'txt':
label_file.append(file)
if not os.path.isfile(cachefile):
# load annots
recs = { 
}
for label_name in label_file:
recs[label_name] = parse_rec(label_path, label_name)
with open(cachefile, 'wb') as f:
cPickle.dump(recs, f)
else:
# load
print('!!! cachefile = ',cachefile)
with open(cachefile, 'rb') as f:
recs = cPickle.load(f)
# extract gt objects for this class
class_recs = { 
}
npos = 0   #修改
for label_name in label_file:
# for imagename in imagenames:
R = [obj for obj in recs[label_name] if obj['name'] == classname]
bbox = np.array([x['bbox'] for x in R])
difficult = np.array([x['difficult'] for x in R]).astype(np.bool)
det = [False] * len(R)
npos = npos + sum(~difficult)
class_recs[label_name] = { 
'bbox': bbox,
'difficult': difficult,
'det': det}
# read dets
detfile = detpath
# detfile = detpath.format(classname)
with open(detfile, 'r') as f:
lines = f.readlines()
splitlines = [x.strip().split(' ') for x in lines]
image_ids = [x[0] for x in splitlines]
confidence = np.array([float(x[1]) for x in splitlines])
BB = np.array([[float(z) for z in x[2:]] for x in splitlines])
# sort by confidence
sorted_ind = np.argsort(-confidence)
sorted_scores = np.sort(-confidence)
BB = BB[sorted_ind, :]
image_ids = [image_ids[x] for x in sorted_ind]
# go down dets and mark TPs and FPs
nd = len(image_ids)
# print(image_ids)
# print(nd)
tp = np.zeros(nd)
fp = np.zeros(nd)
for d in range(nd):
R = class_recs[image_ids[d]]
bb = BB[d, :].astype(float)
ovmax = -np.inf
BBGT = R['bbox'].astype(float)
if BBGT.size > 0:
# compute overlaps
# intersection
ixmin = np.maximum(BBGT[:, 0], bb[0])
iymin = np.maximum(BBGT[:, 1], bb[1])
ixmax = np.minimum(BBGT[:, 2], bb[2])
iymax = np.minimum(BBGT[:, 3], bb[3])
iw = np.maximum(ixmax - ixmin + 1., 0.)
ih = np.maximum(iymax - iymin + 1., 0.)
inters = iw * ih
# union
uni = ((bb[2] - bb[0] + 1.) * (bb[3] - bb[1] + 1.) +
(BBGT[:, 2] - BBGT[:, 0] + 1.) *
(BBGT[:, 3] - BBGT[:, 1] + 1.) - inters)
overlaps = inters / uni
ovmax = np.max(overlaps)
jmax = np.argmax(overlaps)
if ovmax > ovthresh:
if not R['difficult'][jmax]:
if not R['det'][jmax]:
tp[d] = 1.
R['det'][jmax] = 1
else:
fp[d] = 1.
else:
fp[d] = 1.
# compute precision recall
fp = np.cumsum(fp)
tp = np.cumsum(tp)
rec = tp / float(npos)
# avoid divide by zero in case the first detection matches a difficult
# ground truth
prec = tp / np.maximum(tp + fp, np.finfo(np.float64).eps)
ap = voc_ap(rec, prec, use_07_metric)
return rec, prec, ap

三、运行

将以上valid命令生成的txt文件和py文件放在同一个文件夹下,在python中终端运行reval_voc_py.py,可在该文件夹下得到一个pkl文件,名字为你检测的物体名字。如果没错的话应该会直接在终端生成一个PR曲线图。
当然,你也可以根据上面生成的这个pkl文件,再新建一个PR_draw.py文件:

import _pickle as cPickle
import matplotlib.pyplot as plt
fr = open('koujian_pr.pkl','rb')#这里open中第一个参数需要修改成自己生产的pkl文件
#fr1= open('quexian_pr.pkl','rb')
inf = cPickle.load(fr)
fr.close()
x=inf['rec']
y=inf['prec']
plt.figure()
plt.xlabel('recall')
plt.ylabel('precision')
plt.title('PR cruve')
plt.plot(x,y, label='PR')
plt.legend(loc='upper right')
plt.show()
print('AP:',inf['ap'])

运行该文件,同样可以得到PR曲线图。

参考链接

https://blog.csdn.net/Mr_kuilei/article/details/105641774
https://blog.csdn.net/qq_33350808/article/details/83178002

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/148791.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)
blank

相关推荐

  • 【软考】系统集成项目管理工程师(三)系统集成专业技术知识

    【软考】系统集成项目管理工程师(三)系统集成专业技术知识软考中级——系统集成项目管理工程师备考干货第三章:系统集成专业技术知识。

    2022年10月15日
  • Redis锁的介绍「建议收藏」

    Redis锁的介绍「建议收藏」Redis锁的实现:由于Redis是单进程的,可以简单用setnx这个命令进行加锁操作,谁能操作成功,谁就可以获得锁。简单的代码如下:defacquire_lock():   #identifier:唯一标识客户端   #lockname锁名字   #redis客户端连接   ifredis.setnx(lockname,identifier):     …

  • python 变量锁_python字符串前面加b

    python 变量锁_python字符串前面加b一、全局解释器锁(GIL)1、什么是全局解释器锁在同一个进程中只要有一个线程获取了全局解释器(cpu)的使用权限,那么其他的线程就必须等待该线程的全局解释器(cpu)使用权消失后才能使用全局解释器(cpu),即时多个线程直接不会相互影响在同一个进程下也只有一个线程使用cpu,这样的机制称为全局解释器锁(GIL)。2、全局解释器锁的好处1、避免了大量的加锁解锁的好处2、使数据更加安全,解决多线程间的…

  • hive的存储类型_4.2数据类型

    hive的存储类型_4.2数据类型了解Hive数据类型,是Hive编程的基础。使用hive建表,首先要明白hive常用的数据类型有哪些,可以存储哪些类型的数据。其实Hive支持关系型数据库中的大多数基本数据类型,且同时支持关系型数据库中少见的3种集合数类型(STRUCT,MAP,ARRAY)。然而学习技术最好的方式之一就是去查看官方文档。Hive关于数据类型官网地址:Hive官网关于数据类型的介绍…

  • windows10+nvidia驱动+cuda10.1+cudnn安装教程

    windows10+nvidia驱动+cuda10.1+cudnn安装教程一、显卡驱动提前安装好nvidia驱动,windows一般都自动安装了nvidia驱动了没有安装驱动可以去官网下载驱动https://www.geforce.cn/drivers选择自己对应的显卡驱动,默认安装就可以了。下载之前查看自己显卡驱动和cuda版本号之间的关系,如下图所示,然后进行选择性安装。https://docs.nvidia.com/cuda/cuda-to…

  • SQL中declare申明变量

    SQL中declare申明变量

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号