Stamp¶
- class lsst.meas.algorithms.Stamp(stamp_im: ~lsst.afw.image._maskedImage.MaskedImageF, archive_element: ~lsst.afw.table.io.Persistable | None = None, position: ~lsst.geom.SpherePoint | None = <factory>)¶
Bases:
AbstractStamp
Single stamp.
- Parameters:
- stamp_im
MaskedImageF
The actual pixel values for the postage stamp.
- archive_element
Persistable
orNone
, optional Archive element (e.g. Transform or WCS) associated with this stamp.
- position
SpherePoint
orNone
, optional Position of the center of the stamp. Note the user must keep track of the coordinate system.
- stamp_im
Attributes Summary
Methods Summary
factory
(stamp_im, metadata, index[, ...])This method is needed to service the FITS reader.
Attributes Documentation
- archive_element: Persistable | None = None¶
Methods Documentation
- classmethod factory(stamp_im, metadata, index, archive_element=None)¶
This method is needed to service the FITS reader. We need a standard interface to construct objects like this. Parameters needed to construct this object are passed in via a metadata dictionary and then passed to the constructor of this class. If lists of values are passed with the following keys, they will be passed to the constructor, otherwise dummy values will be passed: RA_DEG, DEC_DEG. They should each point to lists of values.
- Parameters:
- stamp
MaskedImage
Pixel data to pass to the constructor
- metadata
dict
Dictionary containing the information needed by the constructor.
- idx
int
Index into the lists in
metadata
- archive_element
Persistable
, optional Archive element (e.g. Transform or WCS) associated with this stamp.
- stamp
- Returns:
- stamp
Stamp
An instance of this class
- stamp