From 4fa86dad263bd8c31f40d7b1fcb151ca29c441cd Mon Sep 17 00:00:00 2001 From: Aleksandar Atanasov Date: Mon, 13 Jun 2016 09:00:29 +0200 Subject: [PATCH] Update houghcircles.py --- samples/python/houghcircles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/python/houghcircles.py b/samples/python/houghcircles.py index 0bfee42933..41cce29be7 100755 --- a/samples/python/houghcircles.py +++ b/samples/python/houghcircles.py @@ -35,7 +35,7 @@ if __name__ == '__main__': for i in range(b): cv2.circle(cimg, (circles[0][i][0], circles[0][i][1]), circles[0][i][2], (0, 0, 255), 3, cv2.LINE_AA) cv2.circle(cimg, (circles[0][i][0], circles[0][i][1]), 2, (0, 255, 0), 3, cv2.LINE_AA) # draw center of circle - + cv2.imshow("detected circles", cimg) cv2.imshow("source", src)