├── .gitattributes ├── .gitignore ├── .idea ├── Object-Detection-YOLOv3.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── 2007_test.txt ├── 2007_train.txt ├── 2007_val.txt ├── LICENSE ├── README.md ├── coco_annotation.py ├── convert.py ├── darknet53.cfg ├── font ├── FiraMono-Medium.otf └── SIL Open Font License.txt ├── kmeans.py ├── model_data ├── coco_classes.txt ├── tiny_yolo_anchors.txt ├── voc_classes copy.txt ├── voc_classes.txt └── yolo_anchors.txt ├── train.py ├── train_bottleneck.py ├── voc_annotation.py ├── voc_annotation1.py ├── yolo.py ├── yolo3 ├── __init__.py ├── model.py └── utils.py ├── yolo_video.py ├── yolov3-tiny.cfg └── yolov3.cfg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/Object-Detection-YOLOv3.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/.idea/Object-Detection-YOLOv3.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /2007_test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2007_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/2007_train.txt -------------------------------------------------------------------------------- /2007_val.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Object-Detection-YOLOv3 2 | -------------------------------------------------------------------------------- /coco_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/coco_annotation.py -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/convert.py -------------------------------------------------------------------------------- /darknet53.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/darknet53.cfg -------------------------------------------------------------------------------- /font/FiraMono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/font/FiraMono-Medium.otf -------------------------------------------------------------------------------- /font/SIL Open Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/font/SIL Open Font License.txt -------------------------------------------------------------------------------- /kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/kmeans.py -------------------------------------------------------------------------------- /model_data/coco_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/model_data/coco_classes.txt -------------------------------------------------------------------------------- /model_data/tiny_yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/model_data/tiny_yolo_anchors.txt -------------------------------------------------------------------------------- /model_data/voc_classes copy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/model_data/voc_classes copy.txt -------------------------------------------------------------------------------- /model_data/voc_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/model_data/voc_classes.txt -------------------------------------------------------------------------------- /model_data/yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/model_data/yolo_anchors.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/train.py -------------------------------------------------------------------------------- /train_bottleneck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/train_bottleneck.py -------------------------------------------------------------------------------- /voc_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/voc_annotation.py -------------------------------------------------------------------------------- /voc_annotation1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/voc_annotation1.py -------------------------------------------------------------------------------- /yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/yolo.py -------------------------------------------------------------------------------- /yolo3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolo3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/yolo3/model.py -------------------------------------------------------------------------------- /yolo3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/yolo3/utils.py -------------------------------------------------------------------------------- /yolo_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/yolo_video.py -------------------------------------------------------------------------------- /yolov3-tiny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/yolov3-tiny.cfg -------------------------------------------------------------------------------- /yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Keyanjie/Object-Detection-YOLOv3/HEAD/yolov3.cfg --------------------------------------------------------------------------------