mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-28 04:07:14 +08:00
Added whitespace to comply with pep8
This commit is contained in:
@@ -152,21 +152,21 @@ def hough_circle(image, radius, normalize=True, full_output=False):
|
||||
Examples
|
||||
--------
|
||||
>>> from skimage.transform import hough_circle
|
||||
>>> img = np.zeros((100,100),dtype=np.bool_)
|
||||
>>> X,Y = np.meshgrid(np.arange(100),np.arange(100))
|
||||
>>> x0,y0,radius = 20,35,23
|
||||
>>> img = np.zeros((100, 100), dtype=np.bool_)
|
||||
>>> X, Y = np.meshgrid(np.arange(100), np.arange(100))
|
||||
>>> x0, y0, radius = 20, 35, 23
|
||||
>>> circle = np.abs((X-x0)**2+(Y-y0)**2-radius**2)<5**2
|
||||
>>> img[circle] = 1
|
||||
>>> # Find position of circle from known radius:
|
||||
>>> res = hough_circle(img,np.array([radius]))[0,:,:]
|
||||
>>> y,x = np.unravel_index(np.argmax(res),res.shape)
|
||||
>>> x,y
|
||||
>>> res = hough_circle(img, np.array([radius]))[0, :, :]
|
||||
>>> y, x = np.unravel_index(np.argmax(res), res.shape)
|
||||
>>> x, y
|
||||
(20, 35)
|
||||
>>> # Find position and radius by trying a range of radii:
|
||||
>>> radii_range = np.arange(5,50)
|
||||
>>> res = hough_circle(img,radii_range)
|
||||
>>> ridx,y,x = np.unravel_index(np.argmax(res),res.shape)
|
||||
>>> x,y,radii_range[ridx]
|
||||
>>> radii_range = np.arange(5, 50)
|
||||
>>> res = hough_circle(img, radii_range)
|
||||
>>> ridx, y, x = np.unravel_index(np.argmax(res), res.shape)
|
||||
>>> x, y, radii_range[ridx]
|
||||
(20, 35, 23)
|
||||
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user