##// END OF EJS Templates
Add None as a widget visible value to allow for visiblity: hidden...
Add None as a widget visible value to allow for visiblity: hidden Now, visible can have three values: * True - show the widget * False - hide the widget and collapse the empty space * None - hide the widget and show the empty space

File last commit:

r18669:b6d2fd61
r19186:adb9a02d
Show More
Image Browser.ipynb
304 lines | 18.2 KiB | text/plain | TextLexer

Image Browser

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

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

We will use the digits dataset from scikit-learn.

In [12]:
digits = datasets.load_digits()
In [14]:
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 [15]:
browse_images(digits)
No description has been provided for this image