Bases: object
LinearSegmentedColormap in which color varies smoothly.
This class is a simplification of LinearSegmentedColormap, which doesn’t support jumps in color intensities.
Parameters : | name : str
segmented_data : dict
|
---|
Bases: object
A class attribute that must be set before use.
skimage.viewer.utils.figimage(image[, ...]) | Return figure and axes with figure tightly surrounding image. |
skimage.viewer.utils.init_qtapp() | Initialize QAppliction. |
skimage.viewer.utils.start_qtapp() | Start Qt mainloop |
Return figure and axes with figure tightly surrounding image.
Unlike pyplot.figimage, this actually plots onto an axes object, which fills the figure. Plotting the image onto an axes allows for subsequent overlays of axes artists.
Parameters : | image : array
scale : float
dpi : int
|
---|