collectionviewer

CollectionViewer

class skimage.viewer.CollectionViewer(image_collection, update_on='move', **kwargs) [source]

Bases: skimage.viewer.viewers.core.ImageViewer

Viewer for displaying image collections.

Select the displayed frame of the image collection using the slider or with the following keyboard shortcuts:

left/right arrows
Previous/next image in collection.
number keys, 0–9
0% to 90% of collection. For example, “5” goes to the image in the middle (i.e. 50%) of the collection.
home/end keys
First/last image in collection.
Parameters:

image_collection : list of images

List of images to be displayed.

update_on : {‘move’ | ‘release’}

Control whether image is updated on slide or release of the image slider. Using ‘on_release’ will give smoother behavior when displaying large images or when writing a plugin/subclass that requires heavy computation.

__init__(image_collection, update_on='move', **kwargs) [source]
keyPressEvent(event) [source]
update_index(name, index) [source]

Select image on display using index into image collection.

doc_scikit_image
2017-01-12 17:20:29
Comments
Leave a Comment

Please login to continue.