williamfzc / stagesepx

detect stages in video automatically
MIT License
434 stars 125 forks source link

数据label支持任意名称 #91

Open williamfzc opened 4 years ago

williamfzc commented 4 years ago

目前默认情况下,所有的数据label为升序数字,可读性不佳。

williamfzc commented 4 years ago

参考 yolo 的数据集,目前大多数据集是依旧采用的 class_id 标记的形式。除此之外建立一个 class_id:class_name 的映射文件用于标识其真实意义。

Row format: image_file_path box1 box2 ... boxN; Box format: x_min,y_min,x_max,y_max,class_id (no space).