lsst.afw g87b8406481+6d9b2db676
|
Public Member Functions | |
def | __init__ (self, filters, array, singleType, bbox=None) |
def | clone (self, deep=True) |
def | __setitem__ (self, args, value) |
def | getBBox (self, origin=PARENT) |
Properties | |
array = property(_getArray, _setArray) | |
Multiband Image class This class acts as a container for multiple `afw.Image` objects. All images must be contained in the same bounding box, and have the same data type. The data is stored in a 3D array (filters, y, x), and the single band `Image` instances have an internal array that points to the 3D multiband array, so that the single band objects and multiband array are always in agreement. Parameters ---------- filters : `list` List of filter names. array : 3D numpy array Array (filters, y, x) of multiband data. If this is used to initialize a `MultibandImage`, either `bbox` or `singles` is also required. singleType : `type` Type of the single band object (eg. `Image`, `Mask`) to convert the array into a tuple of single band objects that point to the image array. bbox : `Box2I` Location of the array in a larger single band image. If `bbox` is `None` then the bounding box is initialized at the origin.
Definition at line 128 of file _multiband.py.
def lsst.afw.image.image._multiband.MultibandImageBase.__init__ | ( | self, | |
filters, | |||
array, | |||
singleType, | |||
bbox = None |
|||
) |
Reimplemented from lsst.afw.multiband.MultibandBase.
Reimplemented in lsst.afw.image.image._multiband.MultibandImage, and lsst.afw.image.image._multiband.MultibandMask.
Definition at line 156 of file _multiband.py.
def lsst.afw.image.image._multiband.MultibandImageBase.__setitem__ | ( | self, | |
args, | |||
value | |||
) |
Set a subset of the MultibandImage
Definition at line 249 of file _multiband.py.
def lsst.afw.image.image._multiband.MultibandImageBase.clone | ( | self, | |
deep = True |
|||
) |
Copy the current object Parameters ---------- deep : `bool` Whether or not to make a deep copy
Reimplemented from lsst.afw.multiband.MultibandBase.
Definition at line 190 of file _multiband.py.
def lsst.afw.image.image._multiband.MultibandImageBase.getBBox | ( | self, | |
origin = PARENT |
|||
) |
Bounding box
Reimplemented from lsst.afw.multiband.MultibandBase.
Definition at line 269 of file _multiband.py.
|
static |
Definition at line 188 of file _multiband.py.