Documentation, example for km_segmentation

This commit is contained in:
Andreas Mueller
2012-08-03 11:37:12 +01:00
parent 1c69adb817
commit d9a22d867b
2 changed files with 73 additions and 2 deletions
+36
View File
@@ -0,0 +1,36 @@
"""
"""
print __doc__
import matplotlib.pyplot as plt
import numpy as np
from skimage.data import lena
from skimage.segmentation import km_segmentation
from skimage.util import img_as_float
img = img_as_float(lena()).copy("C")
segments = km_segmentation(img, ratio=2.0, n_segments=200)
print("number of segments: %d" % len(np.unique(segments)))
plt.subplot(131, title="original")
plt.imshow(img, interpolation='nearest')
plt.axis("off")
plt.subplot(132, title="superpixels")
# shuffle the labels for better visualization
plt.imshow(segments, interpolation='nearest', cmap=plt.cm.prism)
plt.axis("off")
plt.subplot(133, title="mean color")
colors = [np.bincount(segments.ravel(), img[:, :, c].ravel()) for c in
xrange(img.shape[2])]
counts = np.bincount(segments.ravel())
colors = np.vstack(colors) / counts
plt.imshow(colors.T[segments], interpolation='nearest')
plt.axis("off")
plt.subplots_adjust(wspace=0.02, hspace=0.02, top=0.9,
bottom=0.02, left=0.02, right=0.98)
plt.show()
+37 -2
View File
@@ -1,11 +1,47 @@
import numpy as np
cimport numpy as np
from time import time
from scipy import ndimage
from ..util import img_as_float
def km_segmentation(image, n_segments=100, ratio=10., max_iter=100, sigma=1.0):
"""Segments image using k-means clustering in Color-(x,y) space.
Parameters
----------
image: (width, height, 3) ndarray
Input image
ratio: float
Balances color-space proximity and image-space proximity.
Higher values give more weight to color-space.
max_iter: int
maximum number of iterations of k-means
sigma: float
Width of Gaussian smoothing kernel for preprocessing.
Returns
-------
segment_mask: ndarray, [width, height]
Integer mask indicating segment labels.
Notes
-----
The image is smoothed using a Gaussian kernel prior to segmentation.
Best results are achieved if the image is given in Lab color space.
References
----------
.. [1] Slic superpixels, Achanta, R. and Shaji, A. and Smith, K. and Lucchi,
A. and Fua, P. and Suesstrunk, S.
Technical Report 2010
"""
image = np.atleast_3d(image)
if image.shape[2] != 3:
ValueError("Only 3-channel 2d images are supported.")
image = ndimage.gaussian_filter(img_as_float(image), sigma)
# initialize on grid:
height, width = image.shape[:2]
# approximate grid size for desired n_segments
@@ -22,7 +58,6 @@ def km_segmentation(image, n_segments=100, ratio=10., max_iter=100, sigma=1.0):
# we do the scaling of ratio in the same way as in the SLIC paper
# so the values have the same meaning
ratio = (ratio / float(step)) ** 2
print(ratio)
cdef np.ndarray[dtype=np.float_t, ndim=3] image_yx = np.dstack([grid_y, grid_x, image / ratio]).copy("C")
cdef int i, k, x, y, x_min, x_max, y_min, y_max, changes
cdef double dist_mean
@@ -36,7 +71,6 @@ def km_segmentation(image, n_segments=100, ratio=10., max_iter=100, sigma=1.0):
cdef double tmp
for i in xrange(max_iter):
changes = 0
print("iteration %d" % i)
current_mean = <np.float_t*> means.data
# assign pixels to means
for k in xrange(n_means):
@@ -65,6 +99,7 @@ def km_segmentation(image, n_segments=100, ratio=10., max_iter=100, sigma=1.0):
changes += 1
current_distance += 1
current_mean += 5
if changes == 0:
break
# recompute means:
means_list = [np.bincount(nearest_mean.ravel(), image_yx[:, :, j].ravel())