LSST Applications g0d33ba9806+b932483eba,g0fba68d861+d53f2a615d,g1e78f5e6d3+1e869f36eb,g1ec0fe41b4+f536777771,g1fd858c14a+d5f4961c99,g35bb328faa+fcb1d3bbc8,g4af146b050+2e821d8f6b,g4d2262a081+b02c98aa00,g53246c7159+fcb1d3bbc8,g5a012ec0e7+b20b785ecb,g60b5630c4e+b932483eba,g67b6fd64d1+4086c0989b,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g87b7deb4dc+7d8c31d03d,g8852436030+a639f189fc,g89139ef638+4086c0989b,g9125e01d80+fcb1d3bbc8,g94187f82dc+b932483eba,g989de1cb63+4086c0989b,g9f33ca652e+898eabdf38,g9f7030ddb1+b068313d7a,ga2b97cdc51+b932483eba,ga44b1db4f6+2bd830756e,gabe3b4be73+1e0a283bba,gabf8522325+fa80ff7197,gb1101e3267+f4f1608365,gb58c049af0+f03b321e39,gb89ab40317+4086c0989b,gcf25f946ba+a639f189fc,gd6cbbdb0b4+af3c3595f5,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+4078fef7e5,ge278dab8ac+d65b3c2b70,ge410e46f29+4086c0989b,gf67bdafdda+4086c0989b,gfe06eef73a+6e83fc67a4,v29.0.0.rc5
LSST Data Management Base Package
|
Public Member Functions | |
__init__ (self, list[Component] components) | |
int | n_components (self) |
tuple[int, int]|None | center (self) |
tuple[int, int]|None | source_center (self) |
bool | is_null (self) |
Box | bbox (self) |
tuple | bands (self) |
Image | get_model (self, bool use_flux=False) |
parameterize (self, Callable parameterization) | |
__str__ (self) | |
__repr__ (self) | |
Public Attributes | |
components = components | |
Image|None | flux_weighted_image = None |
int | n_components = 0 |
is_null | |
A container for components associated with the same astrophysical object A source can have a single component, or multiple components, and each can be contained in different bounding boxes. Parameters ---------- components: The components contained in the source.
lsst.scarlet.lite.source.Source.__init__ | ( | self, | |
list[Component] | components ) |
lsst.scarlet.lite.source.Source.__repr__ | ( | self | ) |
lsst.scarlet.lite.source.Source.__str__ | ( | self | ) |
tuple lsst.scarlet.lite.source.Source.bands | ( | self | ) |
Box lsst.scarlet.lite.source.Source.bbox | ( | self | ) |
The minimal bounding box to contain all of this sources components Null sources have a bounding box with shape `(0,0,0)`
Definition at line 78 of file source.py.
tuple[int, int] | None lsst.scarlet.lite.source.Source.center | ( | self | ) |
The center of the source in the full Blend.
Definition at line 53 of file source.py.
Image lsst.scarlet.lite.source.Source.get_model | ( | self, | |
bool | use_flux = False ) |
Build the model for the source This is never called during optimization and is only used to generate a model of the source for investigative purposes. Parameters ---------- use_flux: Whether to use the re-distributed flux associated with the source instead of the component models. Returns ------- model: The full-color model.
Definition at line 97 of file source.py.
bool lsst.scarlet.lite.source.Source.is_null | ( | self | ) |
int lsst.scarlet.lite.source.Source.n_components | ( | self | ) |
lsst.scarlet.lite.source.Source.parameterize | ( | self, | |
Callable | parameterization ) |
Convert the component parameter arrays into Parameter instances Parameters ---------- parameterization: A function to use to convert parameters of a given type into a `Parameter` in place. It should take a single argument that is the `Component` or `Source` that is to be parameterized.
Definition at line 127 of file source.py.
tuple[int, int] | None lsst.scarlet.lite.source.Source.source_center | ( | self | ) |
The center of the source in its local bounding box.
Definition at line 60 of file source.py.
Image | None lsst.scarlet.lite.source.Source.flux_weighted_image = None |