HassanBinHaroon / YOLOER_V2

YOLOER stands for You Only Look Once and Estimate Range. The project is about REAL-TIME Object Detection and Distance/Depth Estimation using YOLOv7 as object detector.
7 stars 0 forks source link
autonomous-vehicles deep-learning distance-estimation object-detection quickstart real-time self-driving-car webcam yolov7

YOLOER_V2

YOLOER stands for You Only Look Once and Estimate Range while V1 implies the version of object detector (V2 = YOLOv7). The project is about REAL-TIME Object Detection and Distance/Depth Estimation using YOLOv7 object detector. To test the Real-Time functionality immediately, we provide the option of running the model on the webcam. Moreover, the options of testing on recorded videos and images are also provided.

Open in Colab

Demo1

Demo2

Table of Contents

1. Inference on Local Machine Webcam

2. Inference on Google Colab (quick start)

3. Training of Object Detector

4. Training of Distance Estimator

Inference on Local Machine Webcam

In order to test any Real-Time system, the most convenient method is to run on the webcam. So, we provide the options of quick inference on a local machine and visualization through the webcam. Some installations are required before running the inference and the following subsection contains the entire method. So follow step by step.

Moreover, we prefer working in Conda environments and it is recommended to install it first. In case of not have Conda installed, just skip the Conda-specific commands and follow along.

Installation Procedure

Step 1

 conda create --name YOLOER_V2 python=3.7 -y && conda activate YOLOER_V2

Step 2

 git clone https://github.com/HassanBinHaroon/YOLOER_V2.git

Step 3

 cd YOLOER_V2/REAL-TIME_Distance_Estimation_with_YOLOV7

Step 4

 pip install -r requirements.txt

Step 5

 python detect.py --save-txt --weights yolov7.pt --conf 0.4 --source 0 --model_dist model@1535470106.json --weights_dist model@1535470106.h5 

Inference on Google Colab (quick start)

Click on the following link.

https://colab.research.google.com/github/HassanBinHaroon/YOLOER_V1/blob/master/YOLOER_V1.ipynb

Must Do After Clicking

>>>>> Change runtime type

>>>>> Select GPU

>>>>> Run All

Results Visualization

Note! The project is still in progress.