Files
scikit-image/doc/examples/plot_quickshift.py
T
Andreas Mueller be4b44bc63 ENH CRAZY speedup
2012-08-03 11:37:10 +01:00

32 lines
1000 B
Python

import matplotlib.pyplot as plt
import numpy as np
from skimage.data import lena
from skimage.segmentation import quickshift
from skimage.util import img_as_float
from IPython.core.debugger import Tracer
tracer = Tracer()
img = img_as_float(lena())[::2, ::2, :].copy("C")
segments = quickshift(img)
segments = np.unique(segments, return_inverse=True)[1].reshape(img.shape[:2])
plt.subplot(131, title="original")
plt.imshow(img, interpolation='nearest')
plt.subplot(132, title="superpixels")
# shuffle the labels for better visualization
permuted_labels = np.random.permutation(segments.max() + 1)
plt.imshow(permuted_labels[segments], interpolation='nearest')
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.show()
print("num segments: %d" % len(np.unique(segments)))