diff --git a/skimage/draw/_draw.pyx b/skimage/draw/_draw.pyx index e3dab793..75c2210c 100644 --- a/skimage/draw/_draw.pyx +++ b/skimage/draw/_draw.pyx @@ -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