├── .gitignore ├── LICENSE ├── README.md ├── data ├── detection_examples │ ├── detection_1.jpg │ ├── detection_2.jpg │ └── detections.gif ├── fonts │ └── futur.ttf ├── images │ ├── dog.jpg │ └── office.jpg ├── labels │ └── coco.names └── video │ └── shinjuku.mp4 ├── detect.py ├── detections └── .gitignore ├── load_weights.py ├── meme_example.jpg ├── requirements.txt ├── utils.py ├── weights └── .gitignore └── yolo_v3.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/README.md -------------------------------------------------------------------------------- /data/detection_examples/detection_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/data/detection_examples/detection_1.jpg -------------------------------------------------------------------------------- /data/detection_examples/detection_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/data/detection_examples/detection_2.jpg -------------------------------------------------------------------------------- /data/detection_examples/detections.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/data/detection_examples/detections.gif -------------------------------------------------------------------------------- /data/fonts/futur.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/data/fonts/futur.ttf -------------------------------------------------------------------------------- /data/images/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/data/images/dog.jpg -------------------------------------------------------------------------------- /data/images/office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/data/images/office.jpg -------------------------------------------------------------------------------- /data/labels/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/data/labels/coco.names -------------------------------------------------------------------------------- /data/video/shinjuku.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/data/video/shinjuku.mp4 -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/detect.py -------------------------------------------------------------------------------- /detections/.gitignore: -------------------------------------------------------------------------------- 1 | *.jpg 2 | *.mp4 -------------------------------------------------------------------------------- /load_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/load_weights.py -------------------------------------------------------------------------------- /meme_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/meme_example.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow==2.0 2 | numpy 3 | Pillow 4 | opencv-python 5 | seaborn 6 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/utils.py -------------------------------------------------------------------------------- /weights/.gitignore: -------------------------------------------------------------------------------- 1 | *.weights 2 | checkpoint 3 | *.ckpt.* -------------------------------------------------------------------------------- /yolo_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolo-v3/HEAD/yolo_v3.py --------------------------------------------------------------------------------