LSSTApplications
15.0+21,16.0+1,16.0+3,16.0+4,16.0+8,16.0-1-g2115a9e+2,16.0-1-g4515a79+6,16.0-1-g5c6f5ee+4,16.0-1-g7bb14cc,16.0-1-g80120d7+4,16.0-1-g98efed3+4,16.0-1-gb7f560d+1,16.0-14-gb4f0cd2fa,16.0-2-g1ad129e+1,16.0-2-g2ed7261+1,16.0-2-g311bfd2,16.0-2-g568a347+3,16.0-2-g852da13+6,16.0-2-gd4c87cb+3,16.0-3-g099ede0,16.0-3-g150e024+3,16.0-3-g1f513a6,16.0-3-g958ce35,16.0-4-g08dccf71+4,16.0-4-g128aaef,16.0-4-g84f75fb+5,16.0-4-gcfd1396+4,16.0-4-gde8cee2,16.0-4-gdfb0d14+1,16.0-5-g7bc0afb+3,16.0-5-g86fb31a+3,16.0-6-g2dd73041+4,16.0-7-g95fb7bf,16.0-7-gc37dbc2+4,w.2018.28
LSSTDataManagementBasePackage
|
Baseclass to map red, blue, green intensities into uint8 values. More...
Public Member Functions | |
def | __init__ (self, minimum=None, image=None) |
Create a mapping. More... | |
def | makeRgbImage (self, imageR=None, imageG=None, imageB=None, xSize=None, ySize=None, rescaleFactor=None) |
Convert 3 arrays, imageR, imageG, and imageB into a numpy RGB image. More... | |
def | intensity (self, imageR, imageG, imageB) |
Return the total intensity from the red, blue, and green intensities. More... | |
def | mapIntensityToUint8 (self, intensity) |
Public Attributes | |
minimum | |
Baseclass to map red, blue, green intensities into uint8 values.
def lsst.afw.display.rgb.Mapping.__init__ | ( | self, | |
minimum = None , |
|||
image = None |
|||
) |
Create a mapping.
minimum | Intensity that should be mapped to black (a scalar or array for R, G, B) |
image | The image to be used to calculate the mapping. |
If provided, also the default for makeRgbImage()
Definition at line 68 of file rgb.py.
def lsst.afw.display.rgb.Mapping.intensity | ( | self, | |
imageR, | |||
imageG, | |||
imageB | |||
) |
Return the total intensity from the red, blue, and green intensities.
This is a naive computation, and may be overridden by subclasses
Definition at line 143 of file rgb.py.
def lsst.afw.display.rgb.Mapping.makeRgbImage | ( | self, | |
imageR = None , |
|||
imageG = None , |
|||
imageB = None , |
|||
xSize = None , |
|||
ySize = None , |
|||
rescaleFactor = None |
|||
) |
Convert 3 arrays, imageR, imageG, and imageB into a numpy RGB image.
imageR | Image to map to red (if None, use the image passed to the ctor) |
imageG | Image to map to green (if None, use imageR) |
imageB | Image to map to blue (if None, use imageR) |
xSize | Desired width of RGB image (or None). If ySize is None, preserve aspect ratio |
ySize | Desired height of RGB image (or None) |
rescaleFactor | Make size of output image rescaleFactor*size of the input image (or None) |
N.b. images may be afwImage.Images or numpy arrays
Definition at line 87 of file rgb.py.
def lsst.afw.display.rgb.Mapping.mapIntensityToUint8 | ( | self, | |
intensity | |||
) |