LSST Applications g013ef56533+d2224463a4,g199a45376c+0ba108daf9,g19c4beb06c+9f335b2115,g1fd858c14a+2459ca3e43,g210f2d0738+2d3d333a78,g262e1987ae+abbb004f04,g2825c19fe3+eedc38578d,g29ae962dfc+0cb55f06ef,g2cef7863aa+aef1011c0b,g35bb328faa+8c5ae1fdc5,g3fd5ace14f+19c3a54948,g47891489e3+501a489530,g4cdb532a89+a047e97985,g511e8cfd20+ce1f47b6d6,g53246c7159+8c5ae1fdc5,g54cd7ddccb+890c8e1e5d,g5fd55ab2c7+951cc3f256,g64539dfbff+2d3d333a78,g67b6fd64d1+501a489530,g67fd3c3899+2d3d333a78,g74acd417e5+0ea5dee12c,g786e29fd12+668abc6043,g87389fa792+8856018cbb,g89139ef638+501a489530,g8d7436a09f+5ea4c44d25,g8ea07a8fe4+81eaaadc04,g90f42f885a+34c0557caf,g9486f8a5af+165c016931,g97be763408+d5e351dcc8,gbf99507273+8c5ae1fdc5,gc2a301910b+2d3d333a78,gca7fc764a6+501a489530,gce8aa8abaa+8c5ae1fdc5,gd7ef33dd92+501a489530,gdab6d2f7ff+0ea5dee12c,ge410e46f29+501a489530,geaed405ab2+e3b4b2a692,gf9a733ac38+8c5ae1fdc5,w.2025.41
LSST Data Management Base Package
Loading...
Searching...
No Matches
lsst.scarlet.lite.source.Source Class Reference

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
 

Detailed Description

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.

Definition at line 31 of file source.py.

Constructor & Destructor Documentation

◆ __init__()

lsst.scarlet.lite.source.Source.__init__ ( self,
list[Component] components )

Definition at line 43 of file source.py.

43 def __init__(self, components: list[Component]):
44 self.components = components
45 self.flux_weighted_image: Image | None = None
46

Member Function Documentation

◆ __repr__()

lsst.scarlet.lite.source.Source.__repr__ ( self)

Definition at line 143 of file source.py.

143 def __repr__(self):
144 return f"Source(components={repr(self.components)})>"

◆ __str__()

lsst.scarlet.lite.source.Source.__str__ ( self)

Definition at line 140 of file source.py.

140 def __str__(self):
141 return f"Source<{len(self.components)}>"
142

◆ bands()

tuple lsst.scarlet.lite.source.Source.bands ( self)
The bands in the full source model.

Definition at line 91 of file source.py.

91 def bands(self) -> tuple:
92 """The bands in the full source model."""
93 if self.is_null:
94 return ()
95 return self.components[0].bands
96

◆ bbox()

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.

78 def bbox(self) -> Box:
79 """The minimal bounding box to contain all of this sources components
80
81 Null sources have a bounding box with shape `(0,0,0)`
82 """
83 if self.n_components == 0:
84 return Box((0, 0))
85 bbox = self.components[0].bbox
86 for component in self.components[1:]:
87 bbox = bbox | component.bbox
88 return bbox
89

◆ center()

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.

53 def center(self) -> tuple[int, int] | None:
54 """The center of the source in the full Blend."""
55 if not self.is_null and hasattr(self.components[0], "peak"):
56 return self.components[0].peak # type: ignore
57 return None
58

◆ get_model()

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.

97 def get_model(self, use_flux: bool = False) -> Image:
98 """Build the model for the source
99
100 This is never called during optimization and is only used
101 to generate a model of the source for investigative purposes.
102
103 Parameters
104 ----------
105 use_flux:
106 Whether to use the re-distributed flux associated with the source
107 instead of the component models.
108
109 Returns
110 -------
111 model:
112 The full-color model.
113 """
114 if self.n_components == 0:
115 return 0 # type: ignore
116
117 if use_flux:
118 # Return the redistributed flux
119 # (calculated by scarlet.lite.measure.weight_sources)
120 return self.flux_weighted_image # type: ignore
121
122 model = self.components[0].get_model()
123 for component in self.components[1:]:
124 model = model + component.get_model()
125 return model
126

◆ is_null()

bool lsst.scarlet.lite.source.Source.is_null ( self)
True if the source does not have any components

Definition at line 73 of file source.py.

73 def is_null(self) -> bool:
74 """True if the source does not have any components"""
75 return self.n_components == 0
76

◆ n_components()

int lsst.scarlet.lite.source.Source.n_components ( self)
The number of components in this source

Definition at line 48 of file source.py.

48 def n_components(self) -> int:
49 """The number of components in this source"""
50 return len(self.components)
51

◆ parameterize()

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.

127 def parameterize(self, parameterization: Callable):
128 """Convert the component parameter arrays into Parameter instances
129
130 Parameters
131 ----------
132 parameterization:
133 A function to use to convert parameters of a given type into
134 a `Parameter` in place. It should take a single argument that
135 is the `Component` or `Source` that is to be parameterized.
136 """
137 for component in self.components:
138 component.parameterize(parameterization)
139

◆ source_center()

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.

60 def source_center(self) -> tuple[int, int] | None:
61 """The center of the source in its local bounding box."""
62 _center = self.center
63 _origin = self.bbox.origin
64 if _center is not None:
65 center = (
66 _center[0] - _origin[0],
67 _center[1] - _origin[1],
68 )
69 return center
70 return None
71

Member Data Documentation

◆ components

lsst.scarlet.lite.source.Source.components = components

Definition at line 44 of file source.py.

◆ flux_weighted_image

Image | None lsst.scarlet.lite.source.Source.flux_weighted_image = None

Definition at line 45 of file source.py.

◆ is_null

lsst.scarlet.lite.source.Source.is_null

Definition at line 93 of file source.py.

◆ n_components

int lsst.scarlet.lite.source.Source.n_components = 0

Definition at line 75 of file source.py.


The documentation for this class was generated from the following file: