From c102a0bf0eef6a4b2df91646dc3aba798a676377 Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Fri, 16 Jan 2015 12:08:13 +1100 Subject: [PATCH] Add reference to SLIC0 in SLIC docstring --- skimage/segmentation/slic_superpixels.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skimage/segmentation/slic_superpixels.py b/skimage/segmentation/slic_superpixels.py index e1e0eb84..c31eb9d1 100644 --- a/skimage/segmentation/slic_superpixels.py +++ b/skimage/segmentation/slic_superpixels.py @@ -58,7 +58,7 @@ def slic(image, n_segments=100, compactness=10., max_iter=10, sigma=0, Proportion of the maximum connected segment size. A value of 3 works in most of the cases. slic_zero: bool, optional - Run SLIC-zero, the zero-parameter mode of SLIC + Run SLIC-zero, the zero-parameter mode of SLIC. [2] Returns ------- @@ -93,6 +93,7 @@ def slic(image, n_segments=100, compactness=10., max_iter=10, sigma=0, .. [1] Radhakrishna Achanta, Appu Shaji, Kevin Smith, Aurelien Lucchi, Pascal Fua, and Sabine Süsstrunk, SLIC Superpixels Compared to State-of-the-art Superpixel Methods, TPAMI, May 2012. + .. [2] http://ivrg.epfl.ch/research/superpixels#SLICO Examples --------