├── LICENSE ├── README.md ├── conda-cpu.yml ├── conda-gpu.yml ├── convert_tflite.py ├── convert_trt.py ├── core ├── backbone.py ├── common.py ├── config.py ├── dataset.py ├── functions.py ├── utils.py └── yolov4.py ├── data ├── anchors │ ├── basline_anchors.txt │ ├── basline_tiny_anchors.txt │ ├── yolov3_anchors.txt │ └── yolov4_anchors.txt ├── classes │ ├── coco.names │ ├── voc.names │ └── yymnist.names ├── dataset │ ├── val2014.txt │ └── val2017.txt ├── helpers │ ├── by_class_config.PNG │ ├── contours.png │ ├── crop_example.png │ ├── custom_config.png │ ├── custom_result.png │ ├── demo.gif │ ├── dilation.png │ ├── final.png │ ├── gray.png │ ├── info_details.PNG │ ├── info_output.PNG │ ├── letter.png │ ├── lpr_demo.png │ ├── object_counter.gif │ ├── perclass_count.png │ ├── performance.png │ ├── result-int8.png │ ├── result.png │ ├── string.png │ ├── subimage.png │ ├── threshold.png │ └── total_count.png ├── images │ ├── car.jpg │ ├── car2.jpg │ ├── car3.jpg │ ├── car4.jpg │ ├── dog.jpg │ └── kite.jpg └── video │ ├── cars.mp4 │ ├── license_plate.mp4 │ ├── test.mp4 │ └── video.mp4 ├── detect.py ├── detect_video.py ├── detections ├── crop │ └── dog │ │ ├── bicycle_1.png │ │ ├── dog_1.png │ │ └── truck_1.png └── detection1.png ├── license_plate_recognizer.py ├── requirements-gpu.txt ├── requirements.txt └── save_model.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/README.md -------------------------------------------------------------------------------- /conda-cpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/conda-cpu.yml -------------------------------------------------------------------------------- /conda-gpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/conda-gpu.yml -------------------------------------------------------------------------------- /convert_tflite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/convert_tflite.py -------------------------------------------------------------------------------- /convert_trt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/convert_trt.py -------------------------------------------------------------------------------- /core/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/core/backbone.py -------------------------------------------------------------------------------- /core/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/core/common.py -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/core/config.py -------------------------------------------------------------------------------- /core/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/core/dataset.py -------------------------------------------------------------------------------- /core/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/core/functions.py -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/core/utils.py -------------------------------------------------------------------------------- /core/yolov4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/core/yolov4.py -------------------------------------------------------------------------------- /data/anchors/basline_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/anchors/basline_anchors.txt -------------------------------------------------------------------------------- /data/anchors/basline_tiny_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/anchors/basline_tiny_anchors.txt -------------------------------------------------------------------------------- /data/anchors/yolov3_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/anchors/yolov3_anchors.txt -------------------------------------------------------------------------------- /data/anchors/yolov4_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/anchors/yolov4_anchors.txt -------------------------------------------------------------------------------- /data/classes/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/classes/coco.names -------------------------------------------------------------------------------- /data/classes/voc.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/classes/voc.names -------------------------------------------------------------------------------- /data/classes/yymnist.names: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | 6 8 | 7 9 | 8 10 | 9 11 | -------------------------------------------------------------------------------- /data/dataset/val2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/dataset/val2014.txt -------------------------------------------------------------------------------- /data/dataset/val2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/dataset/val2017.txt -------------------------------------------------------------------------------- /data/helpers/by_class_config.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/by_class_config.PNG -------------------------------------------------------------------------------- /data/helpers/contours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/contours.png -------------------------------------------------------------------------------- /data/helpers/crop_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/crop_example.png -------------------------------------------------------------------------------- /data/helpers/custom_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/custom_config.png -------------------------------------------------------------------------------- /data/helpers/custom_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/custom_result.png -------------------------------------------------------------------------------- /data/helpers/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/demo.gif -------------------------------------------------------------------------------- /data/helpers/dilation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/dilation.png -------------------------------------------------------------------------------- /data/helpers/final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/final.png -------------------------------------------------------------------------------- /data/helpers/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/gray.png -------------------------------------------------------------------------------- /data/helpers/info_details.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/info_details.PNG -------------------------------------------------------------------------------- /data/helpers/info_output.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/info_output.PNG -------------------------------------------------------------------------------- /data/helpers/letter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/letter.png -------------------------------------------------------------------------------- /data/helpers/lpr_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/lpr_demo.png -------------------------------------------------------------------------------- /data/helpers/object_counter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/object_counter.gif -------------------------------------------------------------------------------- /data/helpers/perclass_count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/perclass_count.png -------------------------------------------------------------------------------- /data/helpers/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/performance.png -------------------------------------------------------------------------------- /data/helpers/result-int8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/result-int8.png -------------------------------------------------------------------------------- /data/helpers/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/result.png -------------------------------------------------------------------------------- /data/helpers/string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/string.png -------------------------------------------------------------------------------- /data/helpers/subimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/subimage.png -------------------------------------------------------------------------------- /data/helpers/threshold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/threshold.png -------------------------------------------------------------------------------- /data/helpers/total_count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/helpers/total_count.png -------------------------------------------------------------------------------- /data/images/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/images/car.jpg -------------------------------------------------------------------------------- /data/images/car2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/images/car2.jpg -------------------------------------------------------------------------------- /data/images/car3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/images/car3.jpg -------------------------------------------------------------------------------- /data/images/car4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/images/car4.jpg -------------------------------------------------------------------------------- /data/images/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/images/dog.jpg -------------------------------------------------------------------------------- /data/images/kite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/images/kite.jpg -------------------------------------------------------------------------------- /data/video/cars.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/video/cars.mp4 -------------------------------------------------------------------------------- /data/video/license_plate.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/video/license_plate.mp4 -------------------------------------------------------------------------------- /data/video/test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/video/test.mp4 -------------------------------------------------------------------------------- /data/video/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/data/video/video.mp4 -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/detect.py -------------------------------------------------------------------------------- /detect_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/detect_video.py -------------------------------------------------------------------------------- /detections/crop/dog/bicycle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/detections/crop/dog/bicycle_1.png -------------------------------------------------------------------------------- /detections/crop/dog/dog_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/detections/crop/dog/dog_1.png -------------------------------------------------------------------------------- /detections/crop/dog/truck_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/detections/crop/dog/truck_1.png -------------------------------------------------------------------------------- /detections/detection1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/detections/detection1.png -------------------------------------------------------------------------------- /license_plate_recognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/license_plate_recognizer.py -------------------------------------------------------------------------------- /requirements-gpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/requirements-gpu.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/requirements.txt -------------------------------------------------------------------------------- /save_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theAIGuysCode/yolov4-custom-functions/HEAD/save_model.py --------------------------------------------------------------------------------