can you explain the get_dr_txt and get_gt_txt mean?
hello, when we have done the train, the predict.py can plot the predict boxes, but ,how can we evaluate the recall , precission and mAP
你可以说中文……map的py文件里面不是有个视频链接么,你可以看看
你可以说中文……map的py文件里面不是有个视频链接么,你可以看看
我利用get_dr_txt 和get_gt_txt文件,生成了相关的txt文件,但是在调用get_map的时候,计算出来的AP和mAP都是0,看了你参考的库的issue没有解决,想问一下,需要注意什么吗?
你是检测什么呢
你是检测什么呢
这跟检测什么有关系吗?你的程序plot出来的检测框还是挺准的。
那你可以看看inputs里面的内容是不是真的写进去了
那你可以看看inputs里面的内容是不是真的写进去了 都有数据的。。。
你什么时候下的代码
你什么时候下的代码
这两天
你什么时候下的代码
这两天
for i, c in enumerate(top_label_indices):
predicted_class = self.class_names[int(c)]
score = str(top_conf[i])
left, top, right, bottom = boxes[i]
这里的box顺序是否正确
for i, c in enumerate(top_label_indices): predicted_class = self.class_names[int(c)] score = str(top_conf[i]) left, top, right, bottom = boxes[i]这里的box顺序是否正确
感谢啊,真的是这个原因,大佬自己复现了一遍吗?