LSST Applications 27.0.0,g0265f82a02+469cd937ee,g02d81e74bb+21ad69e7e1,g1470d8bcf6+cbe83ee85a,g2079a07aa2+e67c6346a6,g212a7c68fe+04a9158687,g2305ad1205+94392ce272,g295015adf3+81dd352a9d,g2bbee38e9b+469cd937ee,g337abbeb29+469cd937ee,g3939d97d7f+72a9f7b576,g487adcacf7+71499e7cba,g50ff169b8f+5929b3527e,g52b1c1532d+a6fc98d2e7,g591dd9f2cf+df404f777f,g5a732f18d5+be83d3ecdb,g64a986408d+21ad69e7e1,g858d7b2824+21ad69e7e1,g8a8a8dda67+a6fc98d2e7,g99cad8db69+f62e5b0af5,g9ddcbc5298+d4bad12328,ga1e77700b3+9c366c4306,ga8c6da7877+71e4819109,gb0e22166c9+25ba2f69a1,gb6a65358fc+469cd937ee,gbb8dafda3b+69d3c0e320,gc07e1c2157+a98bf949bb,gc120e1dc64+615ec43309,gc28159a63d+469cd937ee,gcf0d15dbbd+72a9f7b576,gdaeeff99f8+a38ce5ea23,ge6526c86ff+3a7c1ac5f1,ge79ae78c31+469cd937ee,gee10cc3b42+a6fc98d2e7,gf1cff7945b+21ad69e7e1,gfbcc870c63+9a11dc8c8f
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
lsst.scarlet.lite.models.free_form.FreeFormComponent Class Reference
Inheritance diagram for lsst.scarlet.lite.models.free_form.FreeFormComponent:
lsst.scarlet.lite.component.FactorizedComponent lsst.scarlet.lite.component.Component

Public Member Functions

 __init__ (self, tuple bands, np.ndarray|Parameter spectrum, np.ndarray|Parameter morph, Box model_bbox, float|None bg_thresh=None, np.ndarray|None bg_rms=None, float floor=1e-20, list[tuple[int, int]]|None peaks=None, float min_area=0)
 
np.ndarray prox_spectrum (self, np.ndarray spectrum)
 
np.ndarray prox_morph (self, np.ndarray morph)
 
bool resize (self, Box model_box)
 
 __str__ (self)
 
 __repr__ (self)
 

Public Attributes

 peaks
 
 min_area
 
 bg_rms
 

Detailed Description

Implements a free-form component

With no constraints this component is typically either a garbage collector,
or part of a set of components to deconvolve an image by separating out
the different spectral components.

See `FactorizedComponent` for a list of parameters not shown here.

Parameters
----------
peaks: `list` of `tuple`
    A set of ``(cy, cx)`` peaks for detected sources.
    If peak is not ``None`` then only pixels in the same "footprint"
    as one of the peaks are included in the morphology.
    If `peaks` is ``None`` then there is no constraint applied.
min_area: float
    The minimum area for a peak.
    If `min_area` is not `None` then all regions of the morphology
    with fewer than `min_area` connected pixels are removed.

Definition at line 34 of file free_form.py.

Constructor & Destructor Documentation

◆ __init__()

lsst.scarlet.lite.models.free_form.FreeFormComponent.__init__ ( self,
tuple bands,
np.ndarray | Parameter spectrum,
np.ndarray | Parameter morph,
Box model_bbox,
float | None bg_thresh = None,
np.ndarray | None bg_rms = None,
float floor = 1e-20,
list[tuple[int, int]] | None peaks = None,
float min_area = 0 )

Reimplemented from lsst.scarlet.lite.component.FactorizedComponent.

Definition at line 56 of file free_form.py.

67 ):
68 super().__init__(
69 bands=bands,
70 spectrum=spectrum,
71 morph=morph,
72 bbox=model_bbox,
73 peak=None,
74 bg_rms=bg_rms,
75 bg_thresh=bg_thresh,
76 floor=floor,
77 )
78
79 self.peaks = peaks
80 self.min_area = min_area
81

Member Function Documentation

◆ __repr__()

lsst.scarlet.lite.models.free_form.FreeFormComponent.__repr__ ( self)

Reimplemented from lsst.scarlet.lite.component.FactorizedComponent.

Definition at line 134 of file free_form.py.

134 def __repr__(self):
135 return self.__str__()

◆ __str__()

lsst.scarlet.lite.models.free_form.FreeFormComponent.__str__ ( self)

Reimplemented from lsst.scarlet.lite.component.FactorizedComponent.

Definition at line 127 of file free_form.py.

127 def __str__(self):
128 return (
129 f"FreeFormComponent(\n bands={self.bands}\n "
130 f"spectrum={self.spectrum})\n center={self.peak}\n "
131 f"morph_shape={self.morph.shape}"
132 )
133

◆ prox_morph()

np.ndarray lsst.scarlet.lite.models.free_form.FreeFormComponent.prox_morph ( self,
np.ndarray morph )
Apply a prox-like update to the morphology

This is the main difference between an `SedComponent` and a
`FactorizedComponent`, since this component has fewer constraints.

Reimplemented from lsst.scarlet.lite.component.FactorizedComponent.

Definition at line 94 of file free_form.py.

94 def prox_morph(self, morph: np.ndarray) -> np.ndarray:
95 """Apply a prox-like update to the morphology
96
97 This is the main difference between an `SedComponent` and a
98 `FactorizedComponent`, since this component has fewer constraints.
99 """
100 from lsst.scarlet.lite.detect_pybind11 import get_connected_multipeak, get_footprints # type: ignore
101
102 if self.bg_thresh is not None and isinstance(self.bg_rms, np.ndarray):
103 bg_thresh = self.bg_rms * self.bg_thresh
104 # Enforce background thresholding
105 model = self.spectrum[:, None, None] * morph[None, :, :]
106 morph[np.all(model < bg_thresh[:, None, None], axis=0)] = 0
107 else:
108 # enforce positivity
109 morph[morph < 0] = 0
110
111 if self.peaks is not None:
112 morph = morph * get_connected_multipeak(morph > 0, self.peaks, 0)
113
114 if self.min_area > 0:
115 footprints = get_footprints(morph > 0, 4.0, self.min_area, 0, False)
116 footprint_image = footprints_to_image(footprints, cast(tuple[int, int], morph.shape))
117 morph = morph * (footprint_image > 0).data
118
119 if np.all(morph == 0):
120 morph[0, 0] = self.floor
121
122 return morph
123
MatrixB get_connected_multipeak(Eigen::Ref< const M > image, const std::vector< std::vector< int > > centers, const double thresh=0)
Proximal operator to trim pixels not connected to one of the source centers.
std::vector< Footprint > get_footprints(Eigen::Ref< const M > image, const double min_separation, const int min_area, const double thresh, const bool find_peaks=true)

◆ prox_spectrum()

np.ndarray lsst.scarlet.lite.models.free_form.FreeFormComponent.prox_spectrum ( self,
np.ndarray spectrum )
Apply a prox-like update to the spectrum

This differs from `FactorizedComponent` because an
`SedComponent` has the spectrum normalized to unity.

Reimplemented from lsst.scarlet.lite.component.FactorizedComponent.

Definition at line 82 of file free_form.py.

82 def prox_spectrum(self, spectrum: np.ndarray) -> np.ndarray:
83 """Apply a prox-like update to the spectrum
84
85 This differs from `FactorizedComponent` because an
86 `SedComponent` has the spectrum normalized to unity.
87 """
88 # prevent divergent spectrum
89 spectrum[spectrum < self.floor] = self.floor
90 # Normalize the spectrum
91 spectrum = spectrum / np.sum(spectrum)
92 return spectrum
93

◆ resize()

bool lsst.scarlet.lite.models.free_form.FreeFormComponent.resize ( self,
Box model_box )
Test whether or not the component needs to be resized

Reimplemented from lsst.scarlet.lite.component.FactorizedComponent.

Definition at line 124 of file free_form.py.

124 def resize(self, model_box: Box) -> bool:
125 return False
126

Member Data Documentation

◆ bg_rms

lsst.scarlet.lite.models.free_form.FreeFormComponent.bg_rms

Definition at line 102 of file free_form.py.

◆ min_area

lsst.scarlet.lite.models.free_form.FreeFormComponent.min_area

Definition at line 80 of file free_form.py.

◆ peaks

lsst.scarlet.lite.models.free_form.FreeFormComponent.peaks

Definition at line 79 of file free_form.py.


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