Same fix as with the houghcircles
Moved second `imshow()` inside the if-statement to prevent error when no lines have been found and the function is called with an empty `cdst`.
This commit is contained in:
parent
c5bbc0353c
commit
445349dd7d
@ -48,6 +48,7 @@ if __name__ == '__main__':
|
||||
pt2 = ( int(x0-1000*(-b)), int(y0-1000*(a)) )
|
||||
cv2.line(cdst, pt1, pt2, (0, 0, 255), 3, cv2.LINE_AA)
|
||||
|
||||
cv2.imshow("detected lines", cdst)
|
||||
|
||||
cv2.imshow("source", src)
|
||||
cv2.imshow("detected lines", cdst)
|
||||
cv2.waitKey(0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user