diff --git a/doc/examples/edges/plot_contours.py b/doc/examples/edges/plot_contours.py index 35c61804..a9eddd60 100644 --- a/doc/examples/edges/plot_contours.py +++ b/doc/examples/edges/plot_contours.py @@ -3,10 +3,10 @@ Contour finding =============== -A marching squares method can be used to find constant valued contours in an -image. Array values are linearly interpolated to provide better precision of -the output contours. Contours which intersect the image edge are open; all -others are closed. +We use a marching squares method to find constant valued contours in an image. +In ``skimage.measure.find_contours``, array values are linearly interpolated +to provide better precision of the output contours. Contours which intersect +the image edge are open; all others are closed. The `marching squares algorithm `__ is a special case of