lsst.afw  22.0.1-24-g2e899d296+b05a4897c9
Public Member Functions | Public Attributes | List of all members
lsst.afw.display.rgb._rgbContinued.LinearMapping Class Reference
Inheritance diagram for lsst.afw.display.rgb._rgbContinued.LinearMapping:
lsst.afw.display.rgb._rgbContinued.Mapping lsst.afw.display.rgb._rgbContinued.ZScaleMapping

Public Member Functions

def __init__ (self, minimum=None, maximum=None, image=None)
 
def mapIntensityToUint8 (self, intensity)
 
def makeRgbImage (self, imageR=None, imageG=None, imageB=None, xSize=None, ySize=None, rescaleFactor=None)
 
def intensity (self, imageR, imageG, imageB)
 

Public Attributes

 maximum
 
 minimum
 

Detailed Description

A linear map of red, blue, green intensities into uint8 values

Parameters
----------
minimum : `float` or sequence of `float`
    Intensity that should be mapped to black. If an array, has three
    elements for R, G, B.
maximum : `float`
    Intensity that should be mapped to white
image
    Image to estimate minimum/maximum if not explicitly set

Definition at line 213 of file _rgbContinued.py.

Constructor & Destructor Documentation

◆ __init__()

def lsst.afw.display.rgb._rgbContinued.LinearMapping.__init__ (   self,
  minimum = None,
  maximum = None,
  image = None 
)

Reimplemented in lsst.afw.display.rgb._rgbContinued.ZScaleMapping.

Definition at line 227 of file _rgbContinued.py.

Member Function Documentation

◆ intensity()

def lsst.afw.display.rgb._rgbContinued.Mapping.intensity (   self,
  imageR,
  imageG,
  imageB 
)
inherited
Return the total intensity from the red, blue, and green intensities

Notes
-----
This is a naive computation, and may be overridden by subclasses

Definition at line 160 of file _rgbContinued.py.

◆ makeRgbImage()

def lsst.afw.display.rgb._rgbContinued.Mapping.makeRgbImage (   self,
  imageR = None,
  imageG = None,
  imageB = None,
  xSize = None,
  ySize = None,
  rescaleFactor = None 
)
inherited
Convert 3 arrays, imageR, imageG, and imageB into a numpy RGB image

imageR : `lsst.afw.image.Image` or `numpy.ndarray`, (Nx, Ny)
    Image to map to red (if `None`, use the image passed to the ctor)
imageG : `lsst.afw.image.Image` or `numpy.ndarray`, (Nx, Ny), optional
    Image to map to green (if `None`, use imageR)
imageB : `lsst.afw.image.Image` or `numpy.ndarray`, (Nx, Ny), optional
    Image to map to blue (if `None`, use imageR)
xSize : `int`, optional
    Desired width of RGB image. If ``ySize`` is `None`, preserve aspect ratio
ySize : `int`, optional
    Desired height of RGB image
rescaleFactor : `float`, optional
    Make size of output image ``rescaleFactor*size`` of the input image

Definition at line 98 of file _rgbContinued.py.

◆ mapIntensityToUint8()

def lsst.afw.display.rgb._rgbContinued.LinearMapping.mapIntensityToUint8 (   self,
  intensity 
)
Return an array which, when multiplied by an image, returns that
image mapped to the range of a uint8, [0, 255] (but not converted to uint8)

The intensity is assumed to have had ``minimum`` subtracted (as that
can be done per-band)

Reimplemented from lsst.afw.display.rgb._rgbContinued.Mapping.

Definition at line 246 of file _rgbContinued.py.

Member Data Documentation

◆ maximum

lsst.afw.display.rgb._rgbContinued.LinearMapping.maximum

Definition at line 238 of file _rgbContinued.py.

◆ minimum

lsst.afw.display.rgb._rgbContinued.Mapping.minimum
inherited

Definition at line 95 of file _rgbContinued.py.


The documentation for this class was generated from the following file: