paddle - crowdHuman数据集训练人体识别模型
数据集annotation
使用paddle paddle yolo v3的模型,将这个数据集的json内容转换为xml格式。
crowdhuman的odgt文件各项意义
参考官网:http://www.crowdhuman.org/download.html
但说得并不明确,这里对照图片总结了一下:
JSON{
"ID" : image_filename, ---> filename
"gtboxes" : [gtbox], ---> gtbox框列表
}
gtbox{
"tag" : "person" or "mask", ---> mask表示是人群,或者反光,或者像人的东西,需要被忽略的数据,此时extra中的ignore = 1
"vbox": [x, y, w, h], ---> visible box,可看见的部分的检测框,框坐标为左上角x,y + weight, height
"fbox": [x, y, w, h], ---> full box,预测的全部的检测框,当extra的occ == 0时, 这个值和vbox相等
"hbox": [x, y, w, h], ---> head box,预测头的部分的检测框
"extra" : extra, ---> person额外描述
"head_attr" : head_attr, ---> head额外描述
}
extra{ ---> 内容均为可选项
"ignore": 0 o