From f2b3e5f5173ab4da6de0ac86f62987378002eb5f Mon Sep 17 00:00:00 2001 From: Wei Hao Date: Mon, 27 Nov 2017 14:36:51 +0800 Subject: [PATCH] Update houghlines.py Fix a code indent bug: cv2.imshow("detected lines", cdst) --- samples/python/houghlines.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/python/houghlines.py b/samples/python/houghlines.py index 76e074cb1b..efe29405ee 100755 --- a/samples/python/houghlines.py +++ b/samples/python/houghlines.py @@ -48,7 +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("detected lines", cdst) cv2.imshow("source", src) cv2.waitKey(0)