Change to active form + reintroduce function name

This commit is contained in:
François Boulogne
2016-07-16 12:25:35 +02:00
parent 6d3692a70d
commit ce09059969
+4 -4
View File
@@ -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
<http://www.essi.fr/~lingrand/MarchingCubes/algo.html>`__ is a special case of