博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
KITTI数据集格式转换为PASCAL格式及11point方法
阅读量:5298 次
发布时间:2019-06-14

本文共 1835 字,大约阅读时间需要 6 分钟。

;; UPDATE: For KITTI users, you may find `br-dired-kitti-label-to-xml' useful

;; Usage for KITTI dataset (M-x means Alt+x):
;; (1) open this file in emacs.
;; (2) modify the above (setq kitti-image-root "/home/user/path-to-kitti-root/training/image/");
;; to your path to KITTI image root
;; (3) Run M-x eval-buffer or (load-file "path-to-your/table-xml.el") to load all the functions in
;; this file as well as the kitti-image-root path (after you have changed it to the correct path).
;; (4) M-x dired (go to label folder of KITTI)
;; (5) `dired-mark' or `dired-mark-files-regexp' function to mark the label files that you want to convert to XML
;; Note: do not mark too many at a time. About 2000 files a time would be good. I experienced some crashes
;; and memory problems with too many files at a time. It's probably due to an emacs internal problem.
;; (6) M-x `br-dired-kitti-label-to-xml'
;; (7) xml files will be created in ./xml folder
;; (optional) change function `etxml-KITTI-print-buffer-to-xml' and etxml-KITTI-dataset-schema to fit
;; your need. Read the below advanced tutorial if you want to know how it works. If you
;; want to customize the output XML file to some other formats, modify etxml-KITTI-dataset-schema
;; variable below.

 

1 首先在ubuntu下面安装编辑器emacs :使用命令 sudo apt-get install emacs24

2 运行命令emacs打开程序,打开 exXML_0.47 ,修改KITTI的路径

3 按下ALT+X,然后输入 eval-buffer 加载文件中的函数。

4 按下ALT+X ,输入dired,进入KITTI的label文件夹

5 按下ALT+X 输入dired-mark或者用   “dired-mark-files-regexp” 正则化匹配文件     (怎么选前2000个还不会)

6 按下ALT+X ,输入br-dired-kitti-label-to-xml,运行就转换成功。

 

 

这个网址   有使用python转换的教程。

 

 

二、 PASCAL VOC 11point 方法

1 首先对所有预测结果进行排序,score分高的排在前面,分数低的排在后面

2 按顺序逐个把样本作为正例进行预测,计算出FP和TP

3 再计算 召回率rec和精度prec

4 按照召回率t从0到1之间每0.1一个点,一共11个点,分别计算大于t的最大精度值p ,然后按照 ap=ap+p/11 ,一共计算11次。

5 ap即为检测的值,所有的ap平均值为mAP。

 

转载于:https://www.cnblogs.com/linkboy1980/p/6527394.html

你可能感兴趣的文章
more 分页显示文件内容
查看>>
ubuntu18 tensorflow cpu fast_rcnn
查看>>
PageHelper在Mybatis中的使用
查看>>
POJ 1742 Coins
查看>>
Leetcode 589. N-ary Tree Preorder Traversal
查看>>
ADO.Net——增、删、改、查
查看>>
thinking back no11
查看>>
机器学习/深度学习/其他开发环境搭建记录
查看>>
xml.exist() 实例演示
查看>>
判断是否为空然后赋值
查看>>
中标麒麟QT+ODBC+人大金仓开发环境配置
查看>>
Silverlight WCF RIA服务(九)Domain Service 2
查看>>
JSON的结构
查看>>
NopCommerce换主题这件小事
查看>>
zabbix监控日志文件
查看>>
mysql查询数据库中每一张表的内存大小
查看>>
ThinkPHP函数详解:U方法
查看>>
正则表达式
查看>>
E4 - 使用Model Fragments扩展视图
查看>>
pip install torch on windows, and the 'from torch._C import * ImportError: DLL load failed:' s...
查看>>