visbrain.utils.Colormap¶
- class visbrain.utils.Colormap(cmap='viridis', clim=None, vmin=None, under=None, vmax=None, over=None, translucent=None, alpha=1.0, lut_len=1024, interpolation=None)[source][source]¶
Main colormap class.
- Parameters:
- cmapstring | inferno
Matplotlib colormap
- climtuple/list | None
Limit of the colormap. The clim parameter must be a tuple / list of two float number each one describing respectively the (min, max) of the colormap. Every values under clim[0] or over clim[1] will peaked.
- alphafloat | 1.0
The opacity to use. The alpha parameter must be between 0 and 1.
- vminfloat | None
Threshold from which every color will have the color defined using the under parameter bellow.
- undertuple/string | ‘dimgray’
Matplotlib color for values under vmin.
- vmaxfloat | None
Threshold from which every color will have the color defined using the over parameter bellow.
- overtuple/string | ‘darkred’
Matplotlib color for values over vmax.
- translucenttuple | None
Set a specific range translucent. With f_1 and f_2 two floats, if translucent is :
(f_1, f_2) : values between f_1 and f_2 are set to translucent
(None, f_2) x <= f_2 are set to translucent
(f_1, None) f_1 <= x are set to translucent
- lut_lenint | 1024
Number of levels for the colormap.
- interpolation{None, ‘linear’, ‘cubic’}
Interpolation type. Default is None.
- Attributes:
dataarray_likeGet colormap data.
shapetupleGet the shape of the data.
rarray_likeGet red levels.
garray_likeGet green levels.
barray_likeGet blue levels.
rgbarray_likeGet rgb levels.
alphaarray_likeGet transparency level.
glslvispy.colors.ColormapGet a glsl version of the colormap.
- __init__(cmap='viridis', clim=None, vmin=None, under=None, vmax=None, over=None, translucent=None, alpha=1.0, lut_len=1024, interpolation=None)[source][source]¶
Init.
Methods
__init__([cmap, clim, vmin, under, vmax, ...])Init.
to_rgba(data)Turn a data vector into colors using colormap properties.
Attributes
alphaGet transparency level.
bGet blue levels.
dataGet colormap data.
gGet green levels.
glslGet a glsl version of the colormap.
rGet red levels.
rgbGet rgb levels.
shapeGet the shape of the data.