mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-28 11:25:42 +08:00
Remove unnecessary statement breaks
This commit is contained in:
@@ -20,8 +20,8 @@ cdef inline Py_ssize_t round(double r):
|
||||
return <Py_ssize_t>((r + 0.5) if (r > 0.0) else (r - 0.5))
|
||||
|
||||
|
||||
def _hough_circle(cnp.ndarray img, \
|
||||
cnp.ndarray[ndim=1, dtype=cnp.intp_t] radius, \
|
||||
def _hough_circle(cnp.ndarray img,
|
||||
cnp.ndarray[ndim=1, dtype=cnp.intp_t] radius,
|
||||
char normalize=True):
|
||||
"""Perform a circular Hough transform.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user