├── LICENSE ├── README.md ├── VOCdevkit └── VOC2007 │ ├── Annotations │ └── README.md │ ├── ImageSets │ └── Main │ │ └── README.md │ ├── JPEGImages │ └── README.md │ └── voc2yolo4.py ├── data ├── img00001.jpg ├── 1.jpg └── 2.jpg ├── get_dr_txt.py ├── get_gt_txt.py ├── get_map.py ├── img └── img00001.jpg ├── jpg2mp4.py ├── kmeans_for_anchors.py ├── logs └── README.md ├── model_data ├── coco_classes.txt ├── my_classes.txt ├── simhei.ttf ├── voc_classes.txt ├── yolo_anchors.txt └── 训练日志.txt ├── move_pic.py ├── nets ├── CSPdarknet.py ├── __pycache__ │ ├── CSPdarknet.cpython-37.pyc │ ├── CSPdarknet.cpython-38.pyc │ ├── yolo4.cpython-37.pyc │ └── yolo4.cpython-38.pyc ├── yolo4.py └── yolo_training.py ├── predict.py ├── test.py ├── train.py ├── transfer.py ├── utils ├── __pycache__ │ ├── utils.cpython-37.pyc │ └── utils.cpython-38.pyc ├── dataloader.py └── utils.py ├── voc_annotation.py ├── xml_statistical.txt └── yolo.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/README.md -------------------------------------------------------------------------------- /VOCdevkit/VOC2007/Annotations/README.md: -------------------------------------------------------------------------------- 1 | 存放标签文件 -------------------------------------------------------------------------------- /VOCdevkit/VOC2007/ImageSets/Main/README.md: -------------------------------------------------------------------------------- 1 | 存放训练索引文件 -------------------------------------------------------------------------------- /VOCdevkit/VOC2007/JPEGImages/README.md: -------------------------------------------------------------------------------- 1 | 存放图片文件 -------------------------------------------------------------------------------- /VOCdevkit/VOC2007/voc2yolo4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/VOCdevkit/VOC2007/voc2yolo4.py -------------------------------------------------------------------------------- /data/img00001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/data/img00001.jpg -------------------------------------------------------------------------------- /data/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/data/1.jpg -------------------------------------------------------------------------------- /data/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/data/2.jpg -------------------------------------------------------------------------------- /get_dr_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/get_dr_txt.py -------------------------------------------------------------------------------- /get_gt_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/get_gt_txt.py -------------------------------------------------------------------------------- /get_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/get_map.py -------------------------------------------------------------------------------- /img/img00001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/img/img00001.jpg -------------------------------------------------------------------------------- /jpg2mp4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/jpg2mp4.py -------------------------------------------------------------------------------- /kmeans_for_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/kmeans_for_anchors.py -------------------------------------------------------------------------------- /logs/README.md: -------------------------------------------------------------------------------- 1 | 用于存放训练好的文件 -------------------------------------------------------------------------------- /model_data/coco_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/model_data/coco_classes.txt -------------------------------------------------------------------------------- /model_data/my_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/model_data/my_classes.txt -------------------------------------------------------------------------------- /model_data/simhei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/model_data/simhei.ttf -------------------------------------------------------------------------------- /model_data/voc_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/model_data/voc_classes.txt -------------------------------------------------------------------------------- /model_data/yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/model_data/yolo_anchors.txt -------------------------------------------------------------------------------- /model_data/训练日志.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/model_data/训练日志.txt -------------------------------------------------------------------------------- /move_pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/move_pic.py -------------------------------------------------------------------------------- /nets/CSPdarknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/nets/CSPdarknet.py -------------------------------------------------------------------------------- /nets/__pycache__/CSPdarknet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/nets/__pycache__/CSPdarknet.cpython-37.pyc -------------------------------------------------------------------------------- /nets/__pycache__/CSPdarknet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/nets/__pycache__/CSPdarknet.cpython-38.pyc -------------------------------------------------------------------------------- /nets/__pycache__/yolo4.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/nets/__pycache__/yolo4.cpython-37.pyc -------------------------------------------------------------------------------- /nets/__pycache__/yolo4.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/nets/__pycache__/yolo4.cpython-38.pyc -------------------------------------------------------------------------------- /nets/yolo4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/nets/yolo4.py -------------------------------------------------------------------------------- /nets/yolo_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/nets/yolo_training.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/predict.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/train.py -------------------------------------------------------------------------------- /transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/transfer.py -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/utils/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/utils/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/utils/dataloader.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/utils/utils.py -------------------------------------------------------------------------------- /voc_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/voc_annotation.py -------------------------------------------------------------------------------- /xml_statistical.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/xml_statistical.txt -------------------------------------------------------------------------------- /yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaoAnda/yolo-v4/HEAD/yolo.py --------------------------------------------------------------------------------