All Projects → mjDelta → CV-in-ADAS-pytorch

mjDelta / CV-in-ADAS-pytorch

Licence: other
This repo includes Unet, Spatial CNN (S-CNN) and VPNet for lane segmentation, and YOLO, Faster-RCNN, Stereo-RCNN for vehicle detection.

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language
matlab
3953 projects
lua
6591 projects
C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to CV-in-ADAS-pytorch

dynamic-occupancy-grid-map
Implementation of A Random Finite Set Approach for Dynamic Occupancy Grid Maps with Real-Time Application
Stars: ✭ 89 (+256%)
Mutual labels:  adas
LaneandYolovehicle-DetectionLinux
Lane depertaure and Yolo objection detection C++ Linux
Stars: ✭ 16 (-36%)
Mutual labels:  adas
AdvancedLaneLines
Lane identification system for camera based systems.
Stars: ✭ 61 (+144%)
Mutual labels:  adas
copilot
Lane and obstacle detection for active assistance during driving. Uses windowed sweep for lane detection. Combination of object tracking and YOLO for obstacles. Determines lane change, relative velocity and time to collision
Stars: ✭ 95 (+280%)
Mutual labels:  adas
Autonomous-Parking-System
Automatic Parking is an autonomous car maneuvering system (part of ADAS) that moves a vehicle from a traffic lane into a parking spot to perform parallel parking. The automatic parking system aims to enhance the comfort and safety of driving in constrained environments where much attention and experience is required to steer the car. The parking…
Stars: ✭ 39 (+56%)
Mutual labels:  adas
dreyeve
[TPAMI 2018] Predicting the Driver’s Focus of Attention: the DR(eye)VE Project. A deep neural network learnt to reproduce the human driver focus of attention (FoA) in a variety of real-world driving scenarios.
Stars: ✭ 88 (+252%)
Mutual labels:  adas
Segmentation models.pytorch
Segmentation models with pretrained backbones. PyTorch.
Stars: ✭ 4,584 (+18236%)
Mutual labels:  unet-pytorch
unet pytorch
Pytorch implementation of UNet for converting aerial satellite images into google maps kinda images.
Stars: ✭ 27 (+8%)
Mutual labels:  unet-pytorch
SmaAt-UNet
PyTorch-Code for the Paper "SmaAt-UNet: Precipitation Nowcasting using a Small, Attentive UNet-Architecture"
Stars: ✭ 112 (+348%)
Mutual labels:  unet-pytorch

CV-in-ADAS

ADAS is short for Advanced Driver Assistance System. And it has the following features night vision assistance, anti-collision alert, collision resolution, lane departure warning, lane keeping, lane change assist, corner obstacle detection, driver status monitoring, driver reminder, parking assistance, traffic sign recognition, and high beam Auxiliary and so on.

From the system function, the ADAS system has a significant number of tasks related to computer vision (CV) which are as follows:

  1. Detection: vehicle detection, pedestrian detection, non-motor vehicle detection, traffic sign recognition;
  2. Segmentation: lane detection.

In order to realize the above functions, it is necessary to separately establish a model for each function. However, parameters for these models are so many that the performance of the vehicle real-time system may be influenced.

0. Environment

Python version: 3.5
Deep learning framework: pytorch

package list:

  1. scikit-image (0.12.3)
  2. numpy (1.16.2)
  3. torch (1.0.1)
  4. torchvision (0.2.2.post3)
  5. visdom (0.1.8.8)
  6. matplotlib (1.5.3)
  7. pandas (0.18.1)
  8. opencv-python (3.4.3.18)
  9. tqdm (4.26.0)

1. Semantic Segmentation

Task Purpose
Lane segmentation Lane departure warning

2. Detection

Task Purpose
Vehicle detection Vehicle approach warning
Pedestrain detection Pedestrian approach warning

3. Datasets

Lane Segmentation: https://xingangpan.github.io/projects/CULane.html

4. Performance

4.1 Semantic segmentation

Model BCE Loss IOU ACC FPS
Unet-2D 0.0620 \ \ \
VPGNet \ \ \ \
S-CNN 0.0371 \ \ \
Least Square Fitting \ \ \ \

4.2 Result display

unet2d-seg scnn2d-seg

unet2d-loss scnn2d-loss

4.2 Detection

5. To do list

  • Segmentation
    • Traditional segmentation method
    • 2D U-Net Seg
    • VPGNet
    • S-CNN
    • Least Square Fitting
  • Detection
    • YOLO
    • Faster-RCNN
    • Stereo-RCNN
  • Combining the above

6. Reference paper

6.1 Segmentation part

  1. Ronneberger O, Fischer P, Brox T. U-net: Convolutional networks for biomedical image segmentation[C]//International Conference on Medical image computing and computer-assisted intervention. Springer, Cham, 2015: 234-241.
  2. Pan X, Shi J, Luo P, et al. Spatial as deep: Spatial cnn for traffic scene understanding[C]//Thirty-Second AAAI Conference on Artificial Intelligence. 2018.
  3. Lee S, Kim J, Shin Yoon J, et al. Vpgnet: Vanishing point guided network for lane and road marking detection and recognition[C]//Proceedings of the IEEE International Conference on Computer Vision. 2017: 1947-1955.
  4. De Brabandere B , Van Gansbeke W , Neven D , et al. End-to-end Lane Detection through Differentiable Least-Squares Fitting[J]. 2019.

6.2 Detection part

  1. Ren S, He K, Girshick R, et al. Faster r-cnn: Towards real-time object detection with region proposal networks[C]//Advances in neural information processing systems. 2015: 91-99.
  2. Li P, Chen X, Shen S. Stereo R-CNN based 3D Object Detection for Autonomous Driving[J]. arXiv preprint arXiv:1902.09738, 2019.
  3. Redmon J, Farhadi A. Yolov3: An incremental improvement[J]. arXiv preprint arXiv:1804.02767, 2018.
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].