mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-24 13:20:43 +08:00
DOC: update return according to wu's method
This commit is contained in:
@@ -183,10 +183,16 @@ def circle_perimeter(Py_ssize_t cy, Py_ssize_t cx, Py_ssize_t radius,
|
||||
Returns
|
||||
-------
|
||||
rr, cc : (N,) ndarray of int
|
||||
Bresenham and Andres' method:
|
||||
Indices of pixels that belong to the circle perimeter.
|
||||
May be used to directly index into an array, e.g.
|
||||
``img[rr, cc] = 1``.
|
||||
|
||||
rr, cc, val : (N,) ndarray of int
|
||||
Wu' method:
|
||||
Indices of pixels and intensity values.
|
||||
``img[rr, cc] = val``.
|
||||
|
||||
Notes
|
||||
-----
|
||||
Andres method presents the advantage that concentric
|
||||
|
||||
Reference in New Issue
Block a user