ManualInterval¶
-
class
astropy.visualization.ManualInterval[source] [edit on github]¶ Bases:
astropy.visualization.BaseIntervalInterval based on user-specified values.
Parameters: vmin : float, optional
The minimum value in the scaling. Defaults to the image minimum.
vmax : float, optional
The maximum value in the scaling. Defaults to the image maximum.
Methods Summary
get_limits(values)Return the minimum and maximum value in the interval based on the values provided. Methods Documentation
-
get_limits(values)[source] [edit on github]¶ Return the minimum and maximum value in the interval based on the values provided.
Parameters: values :
ndarrayThe image values.
Returns: vmin, vmax : float
The mininium and maximum image value in the interval.
-