From fc9e8c4670404746e1b7cddf587d51fb82b3f264 Mon Sep 17 00:00:00 2001 From: Vighnesh Birodkar Date: Wed, 23 Jul 2014 23:41:02 +0530 Subject: [PATCH] doc string correction --- skimage/graph/graph_cut.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/graph/graph_cut.py b/skimage/graph/graph_cut.py index c15eb7c0..e703a111 100644 --- a/skimage/graph/graph_cut.py +++ b/skimage/graph/graph_cut.py @@ -71,7 +71,7 @@ def cut_n(labels, rag, thresh=0.001, num_cuts=10): """Perform Normalized Graph cut on the Region Adjacency Graph. Given an image's labels and its similarity RAG, recursively perform - a 2-wat Normalized cut on it. All nodes belonging to a subgraph + a 2-way normalized cut on it. All nodes belonging to a subgraph which cannot be cut further, are assigned a unique label in the output.