ManualInterval

class astropy.visualization.ManualInterval(vmin=None, vmax=None)[source]

Bases: BaseInterval

Interval based on user-specified values.

Parameters:
vminpython:float, optional

The minimum value in the scaling. Defaults to the image minimum (ignoring NaNs)

vmaxpython:float, optional

The maximum value in the scaling. Defaults to the image maximum (ignoring NaNs)

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]

Return the minimum and maximum value in the interval based on the values provided.

Parameters:
valuesndarray

The image values.

Returns:
vmin, vmaxpython:float

The mininium and maximum image value in the interval.