From ce09059969006182ceee66202b16880498a2eb9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Boulogne?= Date: Sat, 16 Jul 2016 12:25:35 +0200 Subject: [PATCH] Change to active form + reintroduce function name --- doc/examples/edges/plot_contours.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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