LSST Applications  21.0.0+04719a4bac,21.0.0-1-ga51b5d4+f5e6047307,21.0.0-11-g2b59f77+a9c1acf22d,21.0.0-11-ga42c5b2+86977b0b17,21.0.0-12-gf4ce030+76814010d2,21.0.0-13-g1721dae+760e7a6536,21.0.0-13-g3a573fe+768d78a30a,21.0.0-15-g5a7caf0+f21cbc5713,21.0.0-16-g0fb55c1+b60e2d390c,21.0.0-19-g4cded4ca+71a93a33c0,21.0.0-2-g103fe59+bb20972958,21.0.0-2-g45278ab+04719a4bac,21.0.0-2-g5242d73+3ad5d60fb1,21.0.0-2-g7f82c8f+8babb168e8,21.0.0-2-g8f08a60+06509c8b61,21.0.0-2-g8faa9b5+616205b9df,21.0.0-2-ga326454+8babb168e8,21.0.0-2-gde069b7+5e4aea9c2f,21.0.0-2-gecfae73+1d3a86e577,21.0.0-2-gfc62afb+3ad5d60fb1,21.0.0-25-g1d57be3cd+e73869a214,21.0.0-3-g357aad2+ed88757d29,21.0.0-3-g4a4ce7f+3ad5d60fb1,21.0.0-3-g4be5c26+3ad5d60fb1,21.0.0-3-g65f322c+e0b24896a3,21.0.0-3-g7d9da8d+616205b9df,21.0.0-3-ge02ed75+a9c1acf22d,21.0.0-4-g591bb35+a9c1acf22d,21.0.0-4-g65b4814+b60e2d390c,21.0.0-4-gccdca77+0de219a2bc,21.0.0-4-ge8a399c+6c55c39e83,21.0.0-5-gd00fb1e+05fce91b99,21.0.0-6-gc675373+3ad5d60fb1,21.0.0-64-g1122c245+4fb2b8f86e,21.0.0-7-g04766d7+cd19d05db2,21.0.0-7-gdf92d54+04719a4bac,21.0.0-8-g5674e7b+d1bd76f71f,master-gac4afde19b+a9c1acf22d,w.2021.13
LSST Data Management Base Package
Blendedness.h
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 /*
3  * This file is part of meas_base.
4  *
5  * Developed for the LSST Data Management System.
6  * This product includes software developed by the LSST Project
7  * (https://www.lsst.org).
8  * See the COPYRIGHT file at the top-level directory of this distribution
9  * for details of code ownership.
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <https://www.gnu.org/licenses/>.
23  */
24 
25 #ifndef LSST_MEAS_BASE_Blendedness_h_INCLUDED
26 #define LSST_MEAS_BASE_Blendedness_h_INCLUDED
27 
28 #include "lsst/pex/config.h"
31 #include "lsst/afw/table/Source.h"
32 #include "lsst/afw/image/Image.h"
35 
36 namespace lsst {
37 namespace meas {
38 namespace base {
39 
41 public:
43  doOld, bool,
44  "Whether to compute HeavyFootprint dot products (the old deblend.blendedness parameter)");
45 
46  LSST_CONTROL_FIELD(doFlux, bool, "Whether to compute quantities related to the Gaussian-weighted flux");
47 
48  LSST_CONTROL_FIELD(doShape, bool, "Whether to compute quantities related to the Gaussian-weighted shape");
49 
51  "Radius factor that sets the maximum extent of the weight function (and hence the "
52  "flux measurements)");
53 
54  BlendednessControl() : doOld(true), doFlux(true), doShape(true), nSigmaWeightMax(3.0) {}
55 };
56 
67 public:
68  // Structures and routines to manage flaghandler
69  static FlagDefinitionList const& getFlagDefinitions();
70  static FlagDefinition const FAILURE;
72  static FlagDefinition const NO_SHAPE;
73 
75 
77 
94  static float computeAbsExpectation(float data, float variance);
95 
112  static float computeAbsBias(float mu, float variance);
113 
115  afw::table::SourceRecord& child) const;
116 
118  afw::table::SourceRecord& child) const;
119 
120  virtual void measure(afw::table::SourceRecord& measRecord,
121  afw::image::Exposure<float> const& exposure) const {}
122 
123  virtual void fail(afw::table::SourceRecord& measRecord, MeasurementError* error = nullptr) const {}
124 
125 private:
126  void _measureMoments(afw::image::MaskedImage<float> const& image, afw::table::SourceRecord& child,
127  afw::table::Key<double> const& instFluxRawKey,
128  afw::table::Key<double> const& instFluxAbsKey, ShapeResultKey const& _shapeRawKey,
129  ShapeResultKey const& _shapeAbsKey) const;
130 
131  Control const _ctrl;
134  afw::table::Key<double> _instFluxChildRaw;
135  afw::table::Key<double> _instFluxParentRaw;
137  afw::table::Key<double> _instFluxChildAbs;
138  afw::table::Key<double> _instFluxParentAbs;
139  ShapeResultKey _shapeChildRaw;
140  ShapeResultKey _shapeParentRaw;
141  ShapeResultKey _shapeChildAbs;
142  ShapeResultKey _shapeParentAbs;
143  FlagHandler _flagHandler;
144 };
145 
146 } // namespace base
147 } // namespace meas
148 } // namespace lsst
149 
150 #endif // LSST_MEAS_BASE_Blendedness_h_INCLUDED
table::Key< std::string > name
Definition: Amplifier.cc:116
char * data
Definition: BaseRecord.cc:62
afw::table::Key< afw::table::Array< VariancePixelT > > variance
table::Schema schema
Definition: python.h:134
A class to manipulate images, masks, and variance as a single object.
Definition: MaskedImage.h:73
Defines the fields and offsets for a table.
Definition: Schema.h:50
Record class that contains measurements made on a single exposure.
Definition: Source.h:80
Compute metrics that measure how blended objects are.
Definition: Blendedness.h:66
static float computeAbsExpectation(float data, float variance)
Compute the posterior expectation value of the true instrumental flux in a pixel from its (Gaussian) ...
Definition: Blendedness.cc:260
void measureChildPixels(afw::image::MaskedImage< float > const &image, afw::table::SourceRecord &child) const
Definition: Blendedness.cc:346
static FlagDefinitionList const & getFlagDefinitions()
Definition: Blendedness.cc:49
static float computeAbsBias(float mu, float variance)
Compute the bias induced by using the absolute value of a pixel instead of its value.
Definition: Blendedness.cc:270
static FlagDefinition const NO_SHAPE
Definition: Blendedness.h:72
virtual void fail(afw::table::SourceRecord &measRecord, MeasurementError *error=nullptr) const
Handle an exception thrown by the current algorithm by setting flags in the given record.
Definition: Blendedness.h:123
static FlagDefinition const NO_CENTROID
Definition: Blendedness.h:71
virtual void measure(afw::table::SourceRecord &measRecord, afw::image::Exposure< float > const &exposure) const
Called to measure a single child source in an image.
Definition: Blendedness.h:120
static FlagDefinition const FAILURE
Definition: Blendedness.h:70
BlendednessAlgorithm(Control const &ctrl, std::string const &name, afw::table::Schema &schema)
Definition: Blendedness.cc:195
void measureParentPixels(afw::image::MaskedImage< float > const &image, afw::table::SourceRecord &child) const
Definition: Blendedness.cc:351
double nSigmaWeightMax
"Radius factor that sets the maximum extent of the weight function (and hence the " "flux measurement...
Definition: Blendedness.h:52
bool doOld
"Whether to compute HeavyFootprint dot products (the old deblend.blendedness parameter)" ;
Definition: Blendedness.h:44
bool doShape
"Whether to compute quantities related to the Gaussian-weighted shape" ;
Definition: Blendedness.h:48
bool doFlux
"Whether to compute quantities related to the Gaussian-weighted flux" ;
Definition: Blendedness.h:46
vector-type utility class to build a collection of FlagDefinitions
Definition: FlagHandler.h:60
Utility class for handling flag fields that indicate the failure modes of an algorithm.
Definition: FlagHandler.h:148
Exception to be thrown when a measurement algorithm experiences a known failure mode.
Definition: exceptions.h:48
A FunctorKey for ShapeResult.
An abstract base classes for which the same implementation can be used for both SingleFrameAlgorithm ...
Definition: Algorithm.h:170
#define LSST_CONTROL_FIELD(NAME, TYPE, DOC)
A preprocessor macro used to define fields in C++ "control object" structs.
Definition: config.h:43
This defines the base of measurement transformations.
Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects.
A base class for image defects.
Simple class used to define and document flags The name and doc constitute the identity of the FlagDe...
Definition: FlagHandler.h:40