opencv/samples/python/houghcircles.py

49 lines
1.2 KiB
Python
Raw Normal View History

#!/usr/bin/python
'''
This example illustrates how to use cv.HoughCircles() function.
2015-12-15 07:33:55 +08:00
Usage:
houghcircles.py [<image_name>]
2018-11-14 23:56:21 +08:00
image argument defaults to board.jpg
'''
# Python 2/3 compatibility
from __future__ import print_function
import numpy as np
import cv2 as cv
import sys
2015-12-15 07:33:55 +08:00
def main():
try:
fn = sys.argv[1]
2015-12-15 07:33:55 +08:00
except IndexError:
2018-11-14 23:56:21 +08:00
fn = 'board.jpg'
2018-11-14 23:56:21 +08:00
src = cv.imread(cv.samples.findFile(fn))
img = cv.cvtColor(src, cv.COLOR_BGR2GRAY)
img = cv.medianBlur(img, 5)
cimg = src.copy() # numpy function
circles = cv.HoughCircles(img, cv.HOUGH_GRADIENT, 1, 10, np.array([]), 100, 30, 1, 30)
2016-06-09 13:18:47 +08:00
if circles is not None: # Check if circles have been found and only then iterate over these and add them to the image
2019-10-16 23:49:33 +08:00
_a, b, _c = circles.shape
for i in range(b):
cv.circle(cimg, (circles[0][i][0], circles[0][i][1]), circles[0][i][2], (0, 0, 255), 3, cv.LINE_AA)
cv.circle(cimg, (circles[0][i][0], circles[0][i][1]), 2, (0, 255, 0), 3, cv.LINE_AA) # draw center of circle
2016-06-13 15:00:29 +08:00
cv.imshow("detected circles", cimg)
cv.imshow("source", src)
cv.waitKey(0)
print('Done')
if __name__ == '__main__':
print(__doc__)
main()
cv.destroyAllWindows()