├── COCO2YOLO ├── general_json2yolo.py └── utils.py ├── CrowHuman2YOLO └── data │ ├── crowdhuman-template.data │ ├── crowdhuman.names │ ├── gen_txts.py │ ├── prepare_data.sh │ ├── raw │ └── 这里放置下载的原始文件 │ └── verify_txts.py ├── README.md ├── YOLOv5 └── crowdhuman.yaml ├── check_yolov5_label_format.py ├── confusion_matrix_test ├── confusion_matrix_test.py └── general.py ├── look_up_anchor.py ├── voc2yolo.py └── widerface2yolo.py /COCO2YOLO/general_json2yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoshengsong/YOLOv5-Tools/HEAD/COCO2YOLO/general_json2yolo.py -------------------------------------------------------------------------------- /COCO2YOLO/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoshengsong/YOLOv5-Tools/HEAD/COCO2YOLO/utils.py -------------------------------------------------------------------------------- /CrowHuman2YOLO/data/crowdhuman-template.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoshengsong/YOLOv5-Tools/HEAD/CrowHuman2YOLO/data/crowdhuman-template.data -------------------------------------------------------------------------------- /CrowHuman2YOLO/data/crowdhuman.names: -------------------------------------------------------------------------------- 1 | head 2 | person 3 | -------------------------------------------------------------------------------- /CrowHuman2YOLO/data/gen_txts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoshengsong/YOLOv5-Tools/HEAD/CrowHuman2YOLO/data/gen_txts.py -------------------------------------------------------------------------------- /CrowHuman2YOLO/data/prepare_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoshengsong/YOLOv5-Tools/HEAD/CrowHuman2YOLO/data/prepare_data.sh -------------------------------------------------------------------------------- /CrowHuman2YOLO/data/raw/这里放置下载的原始文件: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CrowHuman2YOLO/data/verify_txts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoshengsong/YOLOv5-Tools/HEAD/CrowHuman2YOLO/data/verify_txts.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoshengsong/YOLOv5-Tools/HEAD/README.md -------------------------------------------------------------------------------- /YOLOv5/crowdhuman.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoshengsong/YOLOv5-Tools/HEAD/YOLOv5/crowdhuman.yaml -------------------------------------------------------------------------------- /check_yolov5_label_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoshengsong/YOLOv5-Tools/HEAD/check_yolov5_label_format.py -------------------------------------------------------------------------------- /confusion_matrix_test/confusion_matrix_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoshengsong/YOLOv5-Tools/HEAD/confusion_matrix_test/confusion_matrix_test.py -------------------------------------------------------------------------------- /confusion_matrix_test/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoshengsong/YOLOv5-Tools/HEAD/confusion_matrix_test/general.py -------------------------------------------------------------------------------- /look_up_anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoshengsong/YOLOv5-Tools/HEAD/look_up_anchor.py -------------------------------------------------------------------------------- /voc2yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoshengsong/YOLOv5-Tools/HEAD/voc2yolo.py -------------------------------------------------------------------------------- /widerface2yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoshengsong/YOLOv5-Tools/HEAD/widerface2yolo.py --------------------------------------------------------------------------------