From afa345f363151f72d42976090ad16bac008f4cce Mon Sep 17 00:00:00 2001 From: Vighnesh Birodkar Date: Thu, 14 Aug 2014 23:47:00 +0530 Subject: [PATCH] Update graph_cut.py --- 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 97ca7507..3f973e22 100644 --- a/skimage/graph/graph_cut.py +++ b/skimage/graph/graph_cut.py @@ -77,7 +77,7 @@ def cut_normalized(labels, rag, thresh=0.001, num_cuts=10, in_place=True): Given an image's labels and its similarity RAG, recursively perform 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 + that cannot be cut further are assigned a unique label in the output. Parameters