##// END OF EJS Templates
Update examples/Interactive Widgets :troll:
Update examples/Interactive Widgets :troll:

File last commit:

r20541:1e566dcc
r20541:1e566dcc
Show More
Image Browser.ipynb
119 lines | 2.2 KiB | text/plain | TextLexer

Image Browser

This example shows how to browse through a set of images with a slider.

In [ ]:
%matplotlib inline
import matplotlib.pyplot as plt
In [ ]:
from IPython.html.widgets import interact
In [ ]:
from sklearn import datasets

We will use the digits dataset from scikit-learn.

In [ ]:
digits = datasets.load_digits()
In [ ]:
def browse_images(digits):
    n = len(digits.images)
    def view_image(i):
        plt.imshow(digits.images[i], cmap=plt.cm.gray_r, interpolation='nearest')
        plt.title('Training: %s' % digits.target[i])
        plt.show()
    interact(view_image, i=(0,n-1))
In [ ]:
browse_images(digits)