All Projects → MankaranSingh → Auto-Birds-Eye

MankaranSingh / Auto-Birds-Eye

Licence: other
Bird's eye/Top Down view generation and mapping with deep learning.

Programming Languages

Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to Auto-Birds-Eye

Apollo perception ros
Object detection / tracking / fusion based on Apollo r3.0.0 perception module in ROS
Stars: ✭ 179 (+38.76%)
Mutual labels:  self-driving-car, autonomous-vehicles
Awesome Carla
👉 CARLA resources such as tutorial, blog, code and etc https://github.com/carla-simulator/carla
Stars: ✭ 246 (+90.7%)
Mutual labels:  self-driving-car, autonomous-vehicles
Awesome Self Driving Car
An awesome list of self-driving cars
Stars: ✭ 185 (+43.41%)
Mutual labels:  self-driving-car, autonomous-vehicles
highway-path-planning
My path-planning pipeline to navigate a car safely around a virtual highway with other traffic.
Stars: ✭ 39 (-69.77%)
Mutual labels:  self-driving-car, autonomous-vehicles
Model-Predictive-Control
C++ implementation of Model Predictive Control(MPC)
Stars: ✭ 51 (-60.47%)
Mutual labels:  self-driving-car, autonomous-vehicles
Autonomousdrivingcookbook
Scenarios, tutorials and demos for Autonomous Driving
Stars: ✭ 1,939 (+1403.1%)
Mutual labels:  self-driving-car, autonomous-vehicles
Rtm3d
Unofficial PyTorch implementation of "RTM3D: Real-time Monocular 3D Detection from Object Keypoints for Autonomous Driving" (ECCV 2020)
Stars: ✭ 211 (+63.57%)
Mutual labels:  self-driving-car, autonomous-vehicles
Self Driving Vehicle
Simulation of self-driving vehicles in Unity. This is also an implementation of the Hybrid A* pathfinding algorithm which is useful if you are interested in pathfinding for vehicles.
Stars: ✭ 112 (-13.18%)
Mutual labels:  self-driving-car, autonomous-vehicles
SelfDrivingCarsControlDesign
Self Driving Cars Longitudinal and Lateral Control Design
Stars: ✭ 96 (-25.58%)
Mutual labels:  self-driving-car, autonomous-vehicles
RCNN-Vehicle-Tracking-Lane-Detection
Vehicle Detection using Mask R-CNN and Computer Vision based Lane Detection
Stars: ✭ 116 (-10.08%)
Mutual labels:  self-driving-car, autonomous-vehicles
SelfDrivingRCCar
Autonomous RC Car using Neural Networks, Python and Open CV
Stars: ✭ 102 (-20.93%)
Mutual labels:  self-driving-car, autonomous-vehicles
Visualizing-lidar-data
Visualizing lidar data using Uber Autonomous Visualization System (AVS) and Jupyter Notebook Application
Stars: ✭ 75 (-41.86%)
Mutual labels:  self-driving-car, autonomous-vehicles
Self Driving Golf Cart
Be Driven 🚘
Stars: ✭ 147 (+13.95%)
Mutual labels:  self-driving-car, autonomous-vehicles
Airsim
Open source simulator for autonomous vehicles built on Unreal Engine / Unity, from Microsoft AI & Research
Stars: ✭ 12,528 (+9611.63%)
Mutual labels:  self-driving-car, autonomous-vehicles
Multiagenttorcs
The multi-agent version of TORCS for developing control algorithms for fully autonomous driving in the cluttered, multi-agent settings of everyday life.
Stars: ✭ 122 (-5.43%)
Mutual labels:  self-driving-car, autonomous-vehicles
Awesome Self Driving Cars
An awesome list of self-driving cars
Stars: ✭ 208 (+61.24%)
Mutual labels:  self-driving-car, autonomous-vehicles
Uselfdrivingsimulator
Self-Driving Car Simulator
Stars: ✭ 48 (-62.79%)
Mutual labels:  self-driving-car, autonomous-vehicles
Lidarobstacledetection
Lidar Obstacle Detection
Stars: ✭ 90 (-30.23%)
Mutual labels:  self-driving-car, autonomous-vehicles
Awesome-Self-Driving
an awesome list of self-driving algorithms, software, tools
Stars: ✭ 74 (-42.64%)
Mutual labels:  self-driving-car, autonomous-vehicles
dig-into-apollo
Apollo notes (Apollo学习笔记) - Apollo learning notes for beginners.
Stars: ✭ 1,786 (+1284.5%)
Mutual labels:  self-driving-car, autonomous-vehicles

Bird's Eye view generation and Mapping through end-to-end deep learning.

Open In Colab

First of all, this project wouldn't had been possible without Maciek Dziubiński.

The repository works on building a model that takes in input the front camera image and generates the top-down view as well as simultaneous map generation (Can be thought of 2D SLAM).

Tesla's autopilot results:

drawing

Our results (In CARLA Simulator):

drawing

Training:

3 Models were trained:

  • U-Net
  • Autoencoder
  • Deeper Autoencoder

Model was trained using following losses:

  • SSIM
  • Dice Loss
  • Cross Entropy Loss

drawing

drawing

Front view images:

drawing

Predicted Bird's eye view:

drawing

Ground Truth:

drawing

Testing on real world data (Comma10k dataset):

The model was trained on a simulator, but I was able to obtain good results after finetuning the model and some further image processing. See how the car is correctly localized to the right and th road curve is correctly detected.

drawing

Map Generation (In Progress) :

This is based on image stitching using map coordinate metadata. I noticed that SIFT/SURF, etc based image feature extractors and matchers do not work in this case since the images produced are very symmetrical and sparse in colors, therefore, no good/unique features can be extracted from these images to perform stitching based on pixels.

Hence, we use location coordintes based stitching. Images are simply overlapped along with correct rotation.

drawing

Dataset:

Dataset can be found here.

drawing

Although, the dataset contains images from five camera:

  • Front
  • Top
  • Left
  • Right
  • Rear

Note: For training the model, only front images were used to predict the half top-down image.

Try this out on Colab:

Open In Colab

References:

https://mono.software/2018/03/14/Image-stitching/

https://medium.com/asap-report/from-semantic-segmentation-to-semantic-birds-eye-view-in-the-carla-simulator-1e636741af3f

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].