akshitagupta15june / lane_detection_opencv

The main emphasis of this project is to find the further ways which can be used further to improve the result of lane detection algorithms. Join Discord channel for discussion.
https://discord.gg/CWqgNWbNye
MIT License
37 stars 36 forks source link

Applying Hough Transforms #17

Closed bharath-acchu closed 4 years ago

bharath-acchu commented 4 years ago

To the point, we now do not need to solve for a line that intersects all nearby edge pixels. Instead, we can simply solve for the intersections between lines in Hough Space, and transform that intersection point back into Image Space to obtain a line which intersects enough edge pixels. Fortunately for us, OpenCV ships with a function for generating Hough lines from an image containing edge pixels.

The task is to use hough transorms to detect lines and render the detected hough lines as an overlay. 🙌

Anujg935 commented 4 years ago

Hi, @bharath-acchu great issue to work on. I have assigned this issue to you. you can start working on this.