LSST Applications g0603fd7c41+501e3db9f9,g0aad566f14+23d8574c86,g0dd44d6229+a1a4c8b791,g2079a07aa2+86d27d4dc4,g2305ad1205+a62672bbc1,g2bbee38e9b+047b288a59,g337abbeb29+047b288a59,g33d1c0ed96+047b288a59,g3a166c0a6a+047b288a59,g3d1719c13e+23d8574c86,g487adcacf7+cb7fd919b2,g4be5004598+23d8574c86,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+4a9e435310,g63cd9335cc+585e252eca,g858d7b2824+23d8574c86,g88963caddf+0cb8e002cc,g99cad8db69+43388bcaec,g9ddcbc5298+9a081db1e4,ga1e77700b3+a912195c07,gae0086650b+585e252eca,gb0e22166c9+60f28cb32d,gb2522980b2+793639e996,gb3a676b8dc+b4feba26a1,gb4b16eec92+63f8520565,gba4ed39666+c2a2e4ac27,gbb8dafda3b+a5d255a82e,gc120e1dc64+d820f8acdb,gc28159a63d+047b288a59,gc3e9b769f7+f4f1cc6b50,gcf0d15dbbd+a1a4c8b791,gdaeeff99f8+f9a426f77a,gdb0af172c8+b6d5496702,ge79ae78c31+047b288a59,w.2024.19
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: