How to find curved line in Lane Detect
Hello, there!
I am currently making a program that detects the lane from the image for studying. I succeeded in finding a straight line using the huff translation function(using openCV Lib). But, There was no processing for images with curved lanes. I searched for searching for the Curve in everywhere, but could not find any suitable data or samples.
If you have any sample code or data I can refer to, please let me know. Thx!
Basically HoughLines, in whatever form, will never give you a curve, because it is looking for straight lines ... you will need to change your approach!
Thank you for answer. If so, how would I like to approach it ... I do not know what keywords to search for. Have you ever had a good idea about it?
You should look into generalized hough transforms.. but it will be challenging!