A simple computer vision project that detects road lane lines in images and videos using OpenCV, Canny Edge Detection, and the Hough Line Transform.
- Convert frame to grayscale
- Apply Canny edge detection
- Mask the region of interest (ROI)
- Detect straight lines using Hough Transform
- Overlay detected lanes on the original image/video
Install dependencies:
pip install opencv-python numpy matplotlib