lsst.afw 22.0.1-43-gf2a78aa89+dd56810b06
|
Public Member Functions | |
def | __init__ (self, filters, image=None, mask=None, variance=None) |
Static Public Member Functions | |
def | fromImages (filters, singles) |
def | fromArrays (filters, image, mask, variance, bbox=None) |
def | fromKwargs (filters, filterKwargs, singleType=MaskedImageF, **kwargs) |
MultibandMaskedImage class This class acts as a container for multiple `afw.MaskedImage` objects. All masked images must have the same bounding box, and the associated images must all have the same data type. The `image`, `mask`, and `variance` are all stored separately into a `MultibandImage`, `MultibandMask`, and `MultibandImage` respectively, which each have their own internal 3D arrays (filter, y, x). See `MultibandTripleBase` for parameter definitions.
Definition at line 801 of file _multiband.py.
def lsst.afw.image.image._multiband.MultibandMaskedImage.__init__ | ( | self, | |
filters, | |||
image = None , |
|||
mask = None , |
|||
variance = None |
|||
) |
Reimplemented from lsst.afw.image.image._multiband.MultibandTripleBase.
Definition at line 813 of file _multiband.py.
|
static |
Construct a MultibandMaskedImage from a collection of arrays see `tripleFromArrays` for a description of parameters
Definition at line 825 of file _multiband.py.
|
static |
Construct a MultibandImage from a collection of single band images see `tripleFromImages` for a description of parameters
Definition at line 817 of file _multiband.py.
|
static |
Build a MultibandImage from a set of keyword arguments see `makeTripleFromKwargs` for a description of parameters
Definition at line 833 of file _multiband.py.