Perception-for-Self-driving
Perception-for-Self-driving copied to clipboard
Perception algorithms for Self-driving car; Lane Line Finding, Vehicle Detection, Traffic Sign Classification algorithm.
Perception Algorithms for Self-driving Car
Perception related projects of Udacity's Self-driving Car Nanodegree Program.
- Lane Line Finding
- Vehicle Detection
- Traffic Sign Classification
Summary
Lane Line Finding
Traditional Computer Vision Techniques, such as Camera calibration, Color Thresholding, and Image Wrapping, have used for Lane Line Finding. Lane Line found in Bird eye view has converted from pixel unit to meter unit, which is calculated to obtain CTE(Cross Track Error) of vehicle and Curvature of the Lane.
Vehicle Detection
SVM Classifier has used to classify Vehicle and Non-Vehicle and Sliding window Method has used to detect vehicles from the image. The problem of Multi-detection and False Positive is prevented by Heat-map made up with information of current image frame and previous image frame.
Traffic Sign Classification
CNN(Convolution Neural Network) has used for Traffic Sign Classification, which recognizes and distinguish 43 different types of traffic sign. Test accuracy showed up to 93.5% in distinguishing traffic signs as a result of retraining LeNet.