https://github.com/ishdew/real-time-road-lane-detection-system
Real time road lane detection pipeline using OpenCV developed for the the CS3283 - Embedded Systems Project in Semester 5
https://github.com/ishdew/real-time-road-lane-detection-system
computer-vision opencv python raspberry-pi-3
Last synced: about 1 month ago
JSON representation
Real time road lane detection pipeline using OpenCV developed for the the CS3283 - Embedded Systems Project in Semester 5
- Host: GitHub
- URL: https://github.com/ishdew/real-time-road-lane-detection-system
- Owner: Ishdew
- Created: 2024-08-30T08:11:58.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-12T19:29:22.000Z (over 1 year ago)
- Last Synced: 2025-03-05T16:24:29.579Z (over 1 year ago)
- Topics: computer-vision, opencv, python, raspberry-pi-3
- Language: Python
- Homepage:
- Size: 65.1 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Real Time Road Lane Detection System
## Project overview
* Autonomous Driving Car is one of the most disruptive innovations in AI. An autonomous car can go anywhere a traditional car can go and does everything that an experienced human driver does. But it’s very essential to train it properly. One of the many steps involved during the training of an autonomous driving car is lane detection, which is the preliminary step.
* The primary goal of this project is to develop a Road Lane Detection System that accurately identifies and tracks road lanes in real-time using computer vision and machine learning techniques. This system is intended to enhance the safety and efficiency of autonomous vehicles and advanced driver-assistance systems (ADAS).
## Steps Involved
* Input image
* Create the camera caliberation matrix and distortion coefficient and undistort the image
* Applying perspective transform
* Thresholding to extract the lane lines
* Histogram peak detection
* Applying sliding window search algorithm ot detect lane lines
* Apply curve fitting
* Overlay the detected lane lines and output the image