mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-16 11:21:25 +08:00
STY: Clean up docstrings.
This commit is contained in:
@@ -3,18 +3,16 @@
|
||||
Contour finding
|
||||
===============
|
||||
|
||||
``skimage.measure.find_contours`` uses a marching squares method 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.
|
||||
``skimage.measure.find_contours`` uses a marching squares method 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.
|
||||
|
||||
The `marching squares algorithm
|
||||
<http://www.essi.fr/~lingrand/MarchingCubes/algo.html>`__ is a special
|
||||
case of the marching cubes algorithm (Lorensen, William and Harvey
|
||||
E. Cline. Marching Cubes: A High Resolution 3D Surface Construction
|
||||
Algorithm. Computer Graphics (SIGGRAPH 87 Proceedings) 21(4) July
|
||||
1987, p. 163-170).
|
||||
<http://www.essi.fr/~lingrand/MarchingCubes/algo.html>`__ is a special case of
|
||||
the marching cubes algorithm (Lorensen, William and Harvey E. Cline. Marching
|
||||
Cubes: A High Resolution 3D Surface Construction Algorithm. Computer Graphics
|
||||
(SIGGRAPH 87 Proceedings) 21(4) July 1987, p. 163-170).
|
||||
|
||||
"""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user