nw_cut_to_box¶
-
pydl.pydlutils.rgbcolor.nw_cut_to_box(colors, origin=(0.0, 0.0, 0.0))[source]¶ Limits the pixel values of the image to a ‘box’, so that the colors do not saturate to white but to a specific color.
Parameters: colors :
ndarray3D Array containing RGB image. The dimensions should be (X, Y, 3).
origin :
tuple()orndarrayAn array with 3 elements. The “distance” from this origin is considered saturated.
Returns: ndarrayThe “boxed” image.
Raises: :exc:`ValueError`
If
colorsororiginhas the wrong shape.