|
lsst.afw g7876432fea+de8826df4f
|
Public Member Functions | |
| __init__ (self, bands, singles, position) | |
| clone (self, deep=True) | |
| __getitem__ (self, indices) | |
| y0 (self) | |
| x0 (self) | |
| bands (self) | |
| singles (self) | |
| filters (self) | |
| getBBox (self) | |
| getXY0 (self) | |
| origin (self) | |
| width (self) | |
| height (self) | |
| __len__ (self) | |
| __iter__ (self) | |
| __next__ (self) | |
| setXY0 (self, xy0) | |
| shiftedTo (self, xy0) | |
| shiftedBy (self, offset) | |
| __repr__ (self) | |
| __str__ (self) | |
Public Attributes | |
| y0 | |
| x0 | |
| bands | |
| singles = Box2I(xy0, self._bbox.getDimensions()) | |
Protected Member Functions | |
| _getArray (self) | |
| _setArray (self, value) | |
| _slice (self, bands, bandIndex, indices) | |
| _bandNamesToIndex (self, bandIndex) | |
Protected Attributes | |
| _bands = tuple([f for f in bands]) | |
| _singles = tuple(singles) | |
| _bbox = self._singles[0].getBBox() | |
| int | _bandIndex = 0 |
Properties | |
| array = property(_getArray, _setArray) | |
Multiband Pixel class This represent acts as a container for a single pixel (scalar) in multiple bands. Parameters ---------- singles : `sequence` Either a list of single band objects or an array of values. bands : `list` List of band names. If `singles` is an `OrderedDict` or a `MultibandPixel` then this argument is ignored, otherwise it is required. position : `Point2I` Location of the pixel in the parent image. Unlike other objects that inherit from `MultibandBase`, `MultibandPixel` objects don't have a full `Box2I` bounding box, since they only contain a single pixel, so the bounding box cannot be inherited from the list of `singles`.
Definition at line 33 of file _multiband.py.
| lsst.afw.image._image._multiband.MultibandPixel.__init__ | ( | self, | |
| bands, | |||
| singles, | |||
| position ) |
Definition at line 55 of file _multiband.py.
| lsst.afw.image._image._multiband.MultibandPixel.__getitem__ | ( | self, | |
| indices ) |
Get a slice of the underlying array Since a `MultibandPixel` is a scalar in the spatial dimensions, it can only be indexed with a band name, number, or slice.
Definition at line 100 of file _multiband.py.
|
inherited |
Definition at line 184 of file multiband.py.
|
inherited |
Definition at line 156 of file multiband.py.
|
inherited |
Definition at line 188 of file multiband.py.
|
inherited |
Definition at line 322 of file multiband.py.
|
inherited |
Definition at line 327 of file multiband.py.
|
protectedinherited |
Convert a list of band names to an index or a slice
Parameters
----------
bandIndex: iterable or `object`
Index to specify a band or list of bands,
usually a string or enum.
For example `bandIndex` can be
`"R"` or `["R", "G", "B"]` or `[Band.R, Band.G, Band.B]`,
if `Band` is an enum.
Returns
-------
bandNames: `list`
Names of the bands in the slice
bandIndex: `slice` or `list` of `int`
Index of each band in `bandNames` in
`self.bands`.
Definition at line 196 of file multiband.py.
|
protected |
Data cube array in multiple bands Since `self._singles` is just a 1D array, `array` just returns `self._singles`.
Definition at line 70 of file _multiband.py.
|
protected |
Definition at line 78 of file _multiband.py.
|
protected |
Slice the current object and return the result
Different inherited classes will handling slicing differently,
so this method must be overloaded in inherited classes.
Parameters
----------
bands: `list` of `str`
List of band names for the slice. This is a subset of the
bands in the parent multiband object
bandIndex: `list` of `int` or `slice`
Index along the band dimension
indices: `tuple` of remaining indices
`MultibandBase.__getitem__` separates the first (band)
index from the remaining indices, so `indices` is a tuple
of all of the indices that come after `band` in the
`args` passed to `MultibandBase.__getitem__`.
Returns
-------
result: `object`
Sliced version of the current object, which could be the
same class or a different class depending on the
slice being made.
Reimplemented from lsst.afw.multiband.MultibandBase.
Definition at line 124 of file _multiband.py.
|
inherited |
List of band names for the single band objects
Definition at line 98 of file multiband.py.
| lsst.afw.image._image._multiband.MultibandPixel.clone | ( | self, | |
| deep = True ) |
Make a copy of the current instance `MultibandPixel.singles` is an array, so this just makes a copy of the array (as opposed to a view of the parent array).
Reimplemented from lsst.afw.multiband.MultibandBase.
Definition at line 84 of file _multiband.py.
|
inherited |
List of filter names for the single band objects (deprecated) Use `bands` instead.
Definition at line 90 of file multiband.py.
|
inherited |
Bounding box
Reimplemented in lsst.afw.image._image._multiband.MultibandImageBase, and lsst.afw.image._image._multiband.MultibandTripleBase.
Definition at line 109 of file multiband.py.
|
inherited |
Minimum coordinate in the bounding box
Definition at line 114 of file multiband.py.
|
inherited |
Height of the images
Definition at line 151 of file multiband.py.
|
inherited |
Minimum (y,x) position This is the position of `self.getBBox().getMin()`, but available as a tuple for numpy array indexing.
Definition at line 136 of file multiband.py.
|
inherited |
Shift the bounding box but keep the same Extent
Parameters
----------
xy0: `Point2I`
New minimum bounds of the bounding box
Reimplemented in lsst.afw.image._image._multiband.MultibandTripleBase.
Definition at line 240 of file multiband.py.
|
inherited |
Shift a bounding box by an offset, but keep the same Extent
This method is broken until DM-10781 is completed.
Parameters
----------
offset: `Extent2I`
Amount to shift the bounding box in x and y.
Returns
-------
result: `MultibandBase`
A copy of the object, shifted by `offset`
Definition at line 274 of file multiband.py.
|
inherited |
Shift the bounding box but keep the same Extent
This method is broken until DM-10781 is completed.
Parameters
----------
xy0: `Point2I`
New minimum bounds of the bounding box
Returns
-------
result: `MultibandBase`
A copy of the object, shifted to `xy0`.
Reimplemented in lsst.afw.image._image._multiband.MultibandTripleBase.
Definition at line 252 of file multiband.py.
|
inherited |
List of single band objects
Definition at line 104 of file multiband.py.
|
inherited |
Width of the images
Definition at line 145 of file multiband.py.
|
inherited |
X0 X component of XY0 `Point2I.getX()`
Definition at line 120 of file multiband.py.
|
inherited |
Y0 Y component of XY0 `Point2I.getY()`
Definition at line 128 of file multiband.py.
|
protectedinherited |
Definition at line 185 of file multiband.py.
|
protectedinherited |
Definition at line 57 of file multiband.py.
|
protectedinherited |
Definition at line 61 of file multiband.py.
|
protectedinherited |
Definition at line 58 of file multiband.py.
|
inherited |
Definition at line 157 of file multiband.py.
|
inherited |
Definition at line 249 of file multiband.py.
|
inherited |
Definition at line 142 of file multiband.py.
|
inherited |
Definition at line 142 of file multiband.py.
Definition at line 82 of file _multiband.py.