Merge pull request #1540 from vighneshbirodkar/ncut_fix

Fixes #1538
This commit is contained in:
Juan Nunez-Iglesias
2015-06-07 11:21:29 +10:00
3 changed files with 31 additions and 20 deletions
+1 -18
View File
@@ -29,6 +29,7 @@ def DW_matrices(graph):
W = nx.to_scipy_sparse_matrix(graph, format='csc')
entries = W.sum(axis=0)
D = sparse.dia_matrix((entries, 0), shape=W.shape).tocsc()
return D, W
@@ -65,21 +66,3 @@ def ncut_cost(cut, D, W):
assoc_b = D.data[~cut].sum()
return (cut_cost / assoc_a) + (cut_cost / assoc_b)
def normalize(a):
"""Normalize values in an array between `0` and `1`.
Parameters
----------
a : ndarray
The array to be normalized.
Returns
-------
out : ndarray
The normalized array.
"""
mi = a.min()
mx = a.max()
return (a - mi) / (mx - mi)
+11 -2
View File
@@ -195,10 +195,19 @@ def get_min_ncut(ev, d, w, num_cuts):
The value of the minimum ncut.
"""
mcut = np.inf
mn = ev.min()
mx = ev.max()
# If all values in `ev` are equal, it implies that the graph can't be
# further sub-divided. In this case the bi-partition is the the graph
# itself and an empty set.
min_mask = np.zeros_like(ev, dtype=np.bool)
if np.allclose(mn, mx):
return min_mask, mcut
# Refer Shi & Malik 2001, Section 3.1.3, Page 892
# Perform evenly spaced n-cuts and determine the optimal one.
for t in np.linspace(0, 1, num_cuts, endpoint=False):
for t in np.linspace(mn, mx, num_cuts, endpoint=False):
mask = ev > t
cost = _ncut.ncut_cost(mask, d, w)
if cost < mcut:
@@ -266,7 +275,7 @@ def _ncut_relabel(rag, thresh, num_cuts):
# Refer Shi & Malik 2001, Section 3.2.3, Page 893
vals, vectors = np.real(vals), np.real(vectors)
index2 = _ncut_cy.argmin2(vals)
ev = _ncut.normalize(vectors[:, index2])
ev = vectors[:, index2]
cut_mask, mcut = get_min_ncut(ev, d, w, num_cuts)
if (mcut < thresh):
+19
View File
@@ -159,3 +159,22 @@ def test_rag_hierarchical():
result = graph.cut_threshold(labels, g, thresh)
assert np.all(result == result[0, 0])
@skipif(not is_installed('networkx'))
def test_ncut_stable_subgraph():
""" Test to catch an error thrown when subgraph has all equal edges. """
img = np.zeros((100, 100, 3), dtype='uint8')
labels = np.zeros((100, 100), dtype='uint8')
labels[...] = 0
labels[:50, :50] = 1
labels[:50, 50:] = 2
rag = graph.rag_mean_color(img, labels, mode='similarity')
new_labels = graph.cut_normalized(labels, rag, in_place=False)
new_labels, _, _ = segmentation.relabel_sequential(new_labels)
assert new_labels.max() == 0