├── .gitignore ├── CaptureReferenceImage.py ├── DistanceEstimation.py ├── README.md ├── ReferenceImages ├── image1.png ├── image10.png ├── image11.png ├── image12.png ├── image13.png ├── image14.png ├── image15.png ├── image2.png ├── image3.png ├── image4.png ├── image5.png ├── image6.png ├── image7.png ├── image8.png └── image9.png ├── classes.txt ├── demo_Recoder.py ├── icons ├── facebook-icon.svg ├── github-icon.svg ├── instagram-icon.svg ├── linkedin-icon.svg └── youtub-icon.svg ├── yolov4-tiny.cfg └── yolov4-tiny.weights /.gitignore: -------------------------------------------------------------------------------- 1 | *.mp4 -------------------------------------------------------------------------------- /CaptureReferenceImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/CaptureReferenceImage.py -------------------------------------------------------------------------------- /DistanceEstimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/DistanceEstimation.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/README.md -------------------------------------------------------------------------------- /ReferenceImages/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image1.png -------------------------------------------------------------------------------- /ReferenceImages/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image10.png -------------------------------------------------------------------------------- /ReferenceImages/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image11.png -------------------------------------------------------------------------------- /ReferenceImages/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image12.png -------------------------------------------------------------------------------- /ReferenceImages/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image13.png -------------------------------------------------------------------------------- /ReferenceImages/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image14.png -------------------------------------------------------------------------------- /ReferenceImages/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image15.png -------------------------------------------------------------------------------- /ReferenceImages/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image2.png -------------------------------------------------------------------------------- /ReferenceImages/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image3.png -------------------------------------------------------------------------------- /ReferenceImages/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image4.png -------------------------------------------------------------------------------- /ReferenceImages/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image5.png -------------------------------------------------------------------------------- /ReferenceImages/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image6.png -------------------------------------------------------------------------------- /ReferenceImages/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image7.png -------------------------------------------------------------------------------- /ReferenceImages/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image8.png -------------------------------------------------------------------------------- /ReferenceImages/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/ReferenceImages/image9.png -------------------------------------------------------------------------------- /classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/classes.txt -------------------------------------------------------------------------------- /demo_Recoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/demo_Recoder.py -------------------------------------------------------------------------------- /icons/facebook-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/icons/facebook-icon.svg -------------------------------------------------------------------------------- /icons/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/icons/github-icon.svg -------------------------------------------------------------------------------- /icons/instagram-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/icons/instagram-icon.svg -------------------------------------------------------------------------------- /icons/linkedin-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/icons/linkedin-icon.svg -------------------------------------------------------------------------------- /icons/youtub-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/icons/youtub-icon.svg -------------------------------------------------------------------------------- /yolov4-tiny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/yolov4-tiny.cfg -------------------------------------------------------------------------------- /yolov4-tiny.weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asadullah-Dal17/Yolov4-Detector-and-Distance-Estimator/HEAD/yolov4-tiny.weights --------------------------------------------------------------------------------