- This model is trained with 1024*1024 images which is of real time camera quality.
- I used nuScenes deep drive dataset and also some custom images for training
- I took 2300 images out of 67k images from Nuscenes dataset and 200 real images from camera
- Here I used Tensorflow 2 object detection which is the latest object detection library of google
- I used SSD Resnet 50 1024*1024 model for training purpose
- I got DetectionBoxes_Precision/[email protected] nearly 82% which is good for 2D image detection in road.
git clone https://github.com/yshastri66/Zebra_cross_detection.git
2.Create a new python environment and install the requirments using requirment.txt file by executing following commands :
conda create -n env_name
conda activate env_name
pip install -r requirments.txt
physical_devices = tf.config.list_physical_devices('GPU')
tf.config.experimental.set_memory_growth(physical_devices[0],True)
Sample predicted images are given in the folder sample_predictions. Look into it for better understanding.