OpenCV2-Python-Tutorials
OpenCV2-Python-Tutorials copied to clipboard
Corrected code sample iteration
Code samples do not iterate through all detected lines in an image. Instead, it only draws the first detected line. Replaced lines[0] by lines[:,0] at lines 59 and 104 to get the desired behavior.