├── README.md ├── car-detection.ipynb ├── car-detection.py ├── font └── FiraMono-Medium.otf ├── images ├── 0001.jpg ├── 0002.jpg ├── 0003.jpg ├── 0004.jpg ├── 0005.jpg ├── 0006.jpg ├── 0007.jpg ├── 0008.jpg ├── 0009.jpg └── 0010.jpg ├── model_data ├── coco_classes.txt ├── object_classes.txt └── yolo_anchors.txt ├── nb_images ├── anchor_map.png ├── architecture.png ├── box_label.png ├── driveai.png ├── flatten.png ├── iou.png ├── non-max-suppression.png ├── proba_map.png └── probability_extraction.png ├── out └── test.jpg ├── yad2k ├── models │ ├── keras_darknet19.py │ └── keras_yolo.py └── utils │ ├── __init__.py │ └── utils.py └── yolo_utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/README.md -------------------------------------------------------------------------------- /car-detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/car-detection.ipynb -------------------------------------------------------------------------------- /car-detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/car-detection.py -------------------------------------------------------------------------------- /font/FiraMono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/font/FiraMono-Medium.otf -------------------------------------------------------------------------------- /images/0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/images/0001.jpg -------------------------------------------------------------------------------- /images/0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/images/0002.jpg -------------------------------------------------------------------------------- /images/0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/images/0003.jpg -------------------------------------------------------------------------------- /images/0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/images/0004.jpg -------------------------------------------------------------------------------- /images/0005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/images/0005.jpg -------------------------------------------------------------------------------- /images/0006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/images/0006.jpg -------------------------------------------------------------------------------- /images/0007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/images/0007.jpg -------------------------------------------------------------------------------- /images/0008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/images/0008.jpg -------------------------------------------------------------------------------- /images/0009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/images/0009.jpg -------------------------------------------------------------------------------- /images/0010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/images/0010.jpg -------------------------------------------------------------------------------- /model_data/coco_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/model_data/coco_classes.txt -------------------------------------------------------------------------------- /model_data/object_classes.txt: -------------------------------------------------------------------------------- 1 | car -------------------------------------------------------------------------------- /model_data/yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/model_data/yolo_anchors.txt -------------------------------------------------------------------------------- /nb_images/anchor_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/nb_images/anchor_map.png -------------------------------------------------------------------------------- /nb_images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/nb_images/architecture.png -------------------------------------------------------------------------------- /nb_images/box_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/nb_images/box_label.png -------------------------------------------------------------------------------- /nb_images/driveai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/nb_images/driveai.png -------------------------------------------------------------------------------- /nb_images/flatten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/nb_images/flatten.png -------------------------------------------------------------------------------- /nb_images/iou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/nb_images/iou.png -------------------------------------------------------------------------------- /nb_images/non-max-suppression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/nb_images/non-max-suppression.png -------------------------------------------------------------------------------- /nb_images/proba_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/nb_images/proba_map.png -------------------------------------------------------------------------------- /nb_images/probability_extraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/nb_images/probability_extraction.png -------------------------------------------------------------------------------- /out/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/out/test.jpg -------------------------------------------------------------------------------- /yad2k/models/keras_darknet19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/yad2k/models/keras_darknet19.py -------------------------------------------------------------------------------- /yad2k/models/keras_yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/yad2k/models/keras_yolo.py -------------------------------------------------------------------------------- /yad2k/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import * -------------------------------------------------------------------------------- /yad2k/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/yad2k/utils/utils.py -------------------------------------------------------------------------------- /yolo_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuangzheng/car-detection/HEAD/yolo_utils.py --------------------------------------------------------------------------------