LSST Applications g063fba187b+cac8b7c890,g0f08755f38+6aee506743,g1653933729+a8ce1bb630,g168dd56ebc+a8ce1bb630,g1a2382251a+b4475c5878,g1dcb35cd9c+8f9bc1652e,g20f6ffc8e0+6aee506743,g217e2c1bcf+73dee94bd0,g28da252d5a+1f19c529b9,g2bbee38e9b+3f2625acfc,g2bc492864f+3f2625acfc,g3156d2b45e+6e55a43351,g32e5bea42b+1bb94961c2,g347aa1857d+3f2625acfc,g35bb328faa+a8ce1bb630,g3a166c0a6a+3f2625acfc,g3e281a1b8c+c5dd892a6c,g3e8969e208+a8ce1bb630,g414038480c+5927e1bc1e,g41af890bb2+8a9e676b2a,g7af13505b9+809c143d88,g80478fca09+6ef8b1810f,g82479be7b0+f568feb641,g858d7b2824+6aee506743,g89c8672015+f4add4ffd5,g9125e01d80+a8ce1bb630,ga5288a1d22+2903d499ea,gb58c049af0+d64f4d3760,gc28159a63d+3f2625acfc,gcab2d0539d+b12535109e,gcf0d15dbbd+46a3f46ba9,gda6a2b7d83+46a3f46ba9,gdaeeff99f8+1711a396fd,ge79ae78c31+3f2625acfc,gef2f8181fd+0a71e47438,gf0baf85859+c1f95f4921,gfa517265be+6aee506743,gfa999e8aa5+17cd334064,w.2024.51
LSST Data Management Base Package
|
Classes | |
class | FactorizedChi2Initialization |
class | FactorizedInitialization |
class | FactorizedWaveletInitialization |
Functions | |
tuple[np.ndarray, Box] | trim_morphology (np.ndarray morph, float bg_thresh=0, int padding=5) |
tuple[Box, np.ndarray|None] | init_monotonic_morph (np.ndarray detect, tuple[int, int] center, Box full_box, int padding=5, bool normalize=True, Monotonicity|None monotonicity=None, float thresh=0) |
np.ndarray | multifit_spectra (Observation observation, Sequence[Image] morphs, Image|None model=None) |
Variables | |
logger = logging.getLogger("scarlet.lite.initialization") | |
tuple[Box, np.ndarray | None] lsst.scarlet.lite.initialization.init_monotonic_morph | ( | np.ndarray | detect, |
tuple[int, int] | center, | ||
Box | full_box, | ||
int | padding = 5, | ||
bool | normalize = True, | ||
Monotonicity | None | monotonicity = None, | ||
float | thresh = 0 ) |
Initialize a morphology for a monotonic source Parameters ---------- detect: The 2D detection image contained in `full_box`. center: The center of the monotonic source. full_box: The bounding box of `detect`. padding: The number of pixels to grow the morphology in each direction. This can be useful if initializing a source with a kernel that is known to be narrower than the expected value of the source. normalize: Whether or not to normalize the morphology. monotonicity: When `monotonicity` is `None`, the component is initialized with only the monotonic pixels, otherwise the monotonicity operator is used to project the morphology to a monotonic solution. thresh: The threshold (fraction above the background) to use for trimming the morphology. Returns ------- bbox: The bounding box of the morphology. morph: The initialized morphology.
Definition at line 70 of file initialization.py.
np.ndarray lsst.scarlet.lite.initialization.multifit_spectra | ( | Observation | observation, |
Sequence[Image] | morphs, | ||
Image | None | model = None ) |
Fit the spectra of multiple components simultaneously Parameters ---------- observation: The class containing the observation data. morphs: The morphology of each component. model: An optional model for sources that are not factorized, and thus will not have their spectra fit. This model is subtracted from the data before fitting the other spectra. Returns ------- spectra: The spectrum for each component, in the same order as `morphs`.
Definition at line 149 of file initialization.py.
tuple[np.ndarray, Box] lsst.scarlet.lite.initialization.trim_morphology | ( | np.ndarray | morph, |
float | bg_thresh = 0, | ||
int | padding = 5 ) |
Trim the morphology up to pixels above a threshold Parameters ---------- morph: The morphology to be trimmed. bg_thresh: The morphology is trimmed to pixels above the threshold. padding: The amount to pad each side to allow the source to grow. Returns ------- morph: The trimmed morphology box: The box that contains the morphology.
Definition at line 40 of file initialization.py.
lsst.scarlet.lite.initialization.logger = logging.getLogger("scarlet.lite.initialization") |
Definition at line 37 of file initialization.py.