27#include "boost/math/constants/constants.hpp"
45 flagDefinitions.add(
"flag_noCentroid",
"Object has no centroid");
47 flagDefinitions.add(
"flag_noShape",
"Object has no shape");
55 if (!childFootprint) {
73 typedef afw::image::Image<float>::const_x_iterator ParentPixIter;
74 typedef ndarray::Array<float const, 1, 1>::Iterator ChildPixIter;
75 auto spanIter = childHeavy->getSpans()->begin();
76 auto const spanEnd = childHeavy->getSpans()->end();
77 ChildPixIter childPixIter = childHeavy->getImageArray().begin();
80 while (spanIter != spanEnd) {
81 afw::geom::Span
const& span = *spanIter;
82 ParentPixIter parentPixIter =
83 parentImage.
x_at(span.getBeginX() - parentImage.
getX0(), span.getY() - parentImage.
getY0());
84 int const width = span.getWidth();
86 for (
int x = 0; x < width; ++parentPixIter, ++childPixIter, ++x) {
87 cp += (*childPixIter) * ((*parentPixIter) - (*childPixIter));
88 cc += (*childPixIter) * (*childPixIter);
98class FluxAccumulator {
100 FluxAccumulator() : _w(0.0), _ww(0.0), _wd(0.0) {}
102 void operator()(
double,
double,
float weight,
float data) {
104 _ww += weight * weight;
105 _wd += weight *
data;
108 double getFlux()
const {
return _w * _wd / _ww; }
116class ShapeAccumulator :
public FluxAccumulator {
118 ShapeAccumulator() : FluxAccumulator(), _wdxx(0.0), _wdyy(0.0), _wdxy(0.0) {}
120 void operator()(
double x,
double y,
float weight,
float data) {
121 FluxAccumulator::operator()(x, y, weight, data);
122 _wdxx +=
x *
x * weight *
data;
123 _wdyy +=
y *
y * weight *
data;
124 _wdxy +=
x *
y * weight *
data;
127 ShapeResult getShape()
const {
131 result.xx = 2.0 * _wdxx / _wd;
132 result.yy = 2.0 * _wdyy / _wd;
133 result.xy = 2.0 * _wdxy / _wd;
143template <
typename Accumulator>
144void computeMoments(afw::image::MaskedImage<float>
const&
image,
geom::Point2D const& centroid,
145 afw::geom::ellipses::Quadrupole
const& shape,
double nSigmaWeightMax,
146 Accumulator& accumulatorRaw, Accumulator& accumulatorAbs) {
149 afw::geom::ellipses::Ellipse ellipse(shape, centroid);
150 ellipse.getCore().scale(nSigmaWeightMax);
161 afw::geom::ellipses::PixelRegion region(ellipse);
162 bool isContained =
bbox.contains(region.getBBox());
163 SpanIter
const spanEnd = region.end();
164 for (SpanIter spanIter = region.begin(); spanIter != spanEnd; ++spanIter) {
165 afw::geom::Span span = *spanIter;
167 if (span.getY() <
bbox.getMinY() || span.getY() >
bbox.getMaxY()) {
170 span = afw::geom::Span(span.getY(),
std::max(span.getMinX(),
bbox.getMinX()),
172 if (span.getMinX() > span.getMaxX()) {
176 PixelIter pixelIter =
image.x_at(span.getBeginX() -
image.getX0(), span.getY() -
image.getY0());
177 PointIter
const pointEnd = span.end();
178 for (PointIter pointIter = span.begin(); pointIter != pointEnd; ++pointIter, ++pixelIter) {
183 float data = pixelIter.image();
184 accumulatorRaw(d.getX(), d.getY(), weight, data);
185 float variance = pixelIter.variance();
188 accumulatorAbs(d.getX(), d.getY(), weight, std::abs(data) - bias);
199 _old = schema.addField<double>(
200 schema.join(name,
"old"),
201 "Blendedness from dot products: (child.dot(parent)/child.dot(child) - 1)");
204 _raw = schema.addField<double>(
205 schema.join(name,
"raw"),
206 "Measure of how much the flux is affected by neighbors: "
207 "(1 - child_instFlux/parent_instFlux). Operates on the \"raw\" pixel values.");
208 _instFluxChildRaw = schema.addField<double>(
209 schema.join(name,
"raw_child_instFlux"),
210 "Instrumental flux of the child, measured with a Gaussian weight matched to the child. "
211 "Operates on the \"raw\" pixel values.",
"count");
212 _instFluxParentRaw = schema.addField<double>(
213 schema.join(name,
"raw_parent_instFlux"),
214 "Instrumental flux of the parent, measured with a Gaussian weight matched to the child. "
215 "Operates on the \"raw\" pixel values.",
"count");
216 _abs = schema.addField<double>(
217 schema.join(name,
"abs"),
218 "Measure of how much the flux is affected by neighbors: "
219 "(1 - child_instFlux/parent_instFlux). "
220 "Operates on the absolute value of the pixels to try to obtain a \"de-noised\" value. "
221 "See section 4.9.11 of Bosch et al. 2018, PASJ, 70, S5 for details.");
222 _instFluxChildAbs = schema.addField<double>(
223 schema.join(name,
"abs_child_instFlux"),
224 "Instrumental flux of the child, measured with a Gaussian weight matched to the child. "
225 "Operates on the absolute value of the pixels to try to obtain a \"de-noised\" value. "
226 "See section 4.9.11 of Bosch et al. 2018, PASJ, 70, S5 for details.",
"count");
227 _instFluxParentAbs = schema.addField<double>(
228 schema.join(name,
"abs_parent_instFlux"),
229 "Instrumental flux of the parent, measured with a Gaussian weight matched to the child. "
230 "Operates on the absolute value of the pixels to try to obtain a \"de-noised\" value. "
231 "See section 4.9.11 of Bosch et al. 2018, PASJ, 70, S5 for details.",
"count");
234 _shapeChildRaw = ShapeResultKey::addFields(
235 schema, schema.join(name,
"raw_child"),
236 "Shape of the child, measured with a Gaussian weight matched to the child. "
237 "Operates on the \"raw\" pixel values.", NO_UNCERTAINTY);
238 _shapeParentRaw = ShapeResultKey::addFields(
239 schema, schema.join(name,
"raw_parent"),
240 "Shape of the parent, measured with a Gaussian weight matched to the child. "
241 "Operates on the \"raw\" pixel values.", NO_UNCERTAINTY);
242 _shapeChildAbs = ShapeResultKey::addFields(
243 schema, schema.join(name,
"abs_child"),
244 "Shape of the child, measured with a Gaussian weight matched to the child. "
245 "Operates on the absolute value of the pixels to try to obtain a \"de-noised\" value. "
246 "See section 4.9.11 of Bosch et al. 2018, PASJ, 70, S5 for details.",
248 _shapeParentAbs = ShapeResultKey::addFields(
249 schema, schema.join(name,
"abs_parent"),
250 "Shape of the parent, measured with a Gaussian weight matched to the child. "
251 "Operates on the absolute value of the pixels to try to obtain a \"de-noised\" value. "
252 "See section 4.9.11 of Bosch et al. 2018, PASJ, 70, S5 for details.",
255 if (_ctrl.doShape || _ctrl.doFlux) {
256 _flagHandler = FlagHandler::addFields(schema, name, getFlagDefinitions());
262 if (!(normalization > 0)) {
266 return data + (
std::sqrt(0.5f * variance / boost::math::constants::pi<float>()) *
267 std::exp(-0.5f * (data * data) / variance) / normalization);
271 return (
std::sqrt(2.0f * variance / boost::math::constants::pi<float>()) *
272 std::exp(-0.5f * (mu * mu) / variance)) -
283 if (!child.
getTable()->getCentroidSlot().getMeasKey().isValid()) {
285 "Centroid Key must be defined to measure the blendedness instFlux");
289 if (!child.
getTable()->getCentroidSlot().getMeasKey().isValid()) {
291 "Shape Key must be defined to measure the blendedness shape");
294 if (_ctrl.doShape || _ctrl.doFlux) {
296 if (child.
getTable()->getCentroidSlot().getFlagKey().isValid()) {
301 _flagHandler.setValue(child,
NO_CENTROID.number,
true);
304 if (child.
getTable()->getShapeSlot().getFlagKey().isValid()) {
306 _flagHandler.setValue(child,
NO_SHAPE.number,
true);
307 _flagHandler.setValue(child,
FAILURE.number,
true);
310 if (!(child.
getShape().getDeterminant() >= 0.0)) {
312 _flagHandler.setValue(child,
NO_SHAPE.number,
true);
313 _flagHandler.setValue(child,
FAILURE.number,
true);
318 _flagHandler.setValue(child,
NO_CENTROID.number,
true);
319 _flagHandler.setValue(child,
FAILURE.number,
true);
326 ShapeAccumulator accumulatorRaw;
327 ShapeAccumulator accumulatorAbs;
328 computeMoments(image, child.
getCentroid(), child.
getShape(), _ctrl.nSigmaWeightMax, accumulatorRaw,
331 child.
set(instFluxRawKey, accumulatorRaw.getFlux());
332 child.
set(instFluxAbsKey,
std::max(accumulatorAbs.getFlux(), 0.0));
334 _shapeRawKey.
set(child, accumulatorRaw.getShape());
335 _shapeAbsKey.
set(child, accumulatorAbs.getShape());
336 }
else if (_ctrl.doFlux) {
337 FluxAccumulator accumulatorRaw;
338 FluxAccumulator accumulatorAbs;
339 computeMoments(image, child.
getCentroid(), child.
getShape(), _ctrl.nSigmaWeightMax, accumulatorRaw,
341 child.
set(instFluxRawKey, accumulatorRaw.getFlux());
342 child.
set(instFluxAbsKey,
std::max(accumulatorAbs.getFlux(), 0.0));
348 _measureMoments(
image, child, _instFluxChildRaw, _instFluxChildAbs, _shapeChildRaw, _shapeChildAbs);
356 _measureMoments(
image, child, _instFluxParentRaw, _instFluxParentAbs, _shapeParentRaw, _shapeParentAbs);
358 child.
set(_raw, 1.0 - child.
get(_instFluxChildRaw) / child.
get(_instFluxParentRaw));
359 child.
set(_abs, 1.0 - child.
get(_instFluxChildAbs) / child.
get(_instFluxParentAbs));
360 if (child.
get(_instFluxParentAbs) == 0.0) {
364 _flagHandler.setValue(child,
FAILURE.number,
true);
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
SpanPixelIterator Iterator
An iterator over points in the Span.
std::vector< Span >::const_iterator Iterator
Iterator type used by begin() and end().
int getX0() const
Return the image's column-origin.
lsst::geom::Box2I getBBox(ImageOrigin origin=PARENT) const
int getY0() const
Return the image's row-origin.
x_iterator x_at(int x, int y) const
Return an x_iterator to the point (x, y) in the image.
A class to represent a 2-dimensional array of pixels.
A class to manipulate images, masks, and variance as a single object.
const_MaskedImageIterator< typename Image::x_iterator, typename Mask::x_iterator, typename Variance::x_iterator > const_x_iterator
A const_iterator to a row of a MaskedImage.
Field< T >::Value get(Key< T > const &key) const
Return the value of a field for the given key.
void set(Key< T > const &key, U const &value)
Set value of a field for the given key.
A class used as a handle to a particular field in a table.
Defines the fields and offsets for a table.
Record class that contains measurements made on a single exposure.
bool getShapeFlag() const
Return true if the measurement in the Shape slot failed.
double getX() const
Return the centroid slot x coordinate.
double getY() const
Return the centroid slot y coordinate.
CentroidSlotDefinition::MeasValue getCentroid() const
Get the value of the Centroid slot measurement.
bool getCentroidFlag() const
Return true if the measurement in the Centroid slot failed.
std::shared_ptr< SourceTable const > getTable() const
std::shared_ptr< Footprint > getFootprint() const
ShapeSlotDefinition::MeasValue getShape() const
Get the value of the Shape slot measurement.
An integer coordinate rectangle.
bool contains(Point2I const &point) const noexcept
Return true if the box contains the point.
T computeSquaredNorm() const
Return the squared L2 norm of the Extent (x^2 + y^2 + ...).
static float computeAbsExpectation(float data, float variance)
Compute the posterior expectation value of the true instrumental flux in a pixel from its (Gaussian) ...
void measureChildPixels(afw::image::MaskedImage< float > const &image, afw::table::SourceRecord &child) const
BlendednessControl Control
static FlagDefinitionList const & getFlagDefinitions()
static float computeAbsBias(float mu, float variance)
Compute the bias induced by using the absolute value of a pixel instead of its value.
static FlagDefinition const NO_SHAPE
static FlagDefinition const NO_CENTROID
static FlagDefinition const FAILURE
BlendednessAlgorithm(Control const &ctrl, std::string const &name, afw::table::Schema &schema)
void measureParentPixels(afw::image::MaskedImage< float > const &image, afw::table::SourceRecord &child) const
bool doShape
"Whether to compute quantities related to the Gaussian-weighted shape" ;
bool doFlux
"Whether to compute quantities related to the Gaussian-weighted flux" ;
vector-type utility class to build a collection of FlagDefinitions
A FunctorKey for ShapeResult.
virtual void set(afw::table::BaseRecord &record, ShapeResult const &value) const
Set a ShapeResult in the given record.
Reports errors in the logical structure of the program.
Extent< double, 2 > Extent2D
Point< double, 2 > Point2D
UnitVector3d centroid(VertexIterator const begin, VertexIterator const end)
T dynamic_pointer_cast(T... args)
Simple class used to define and document flags The name and doc constitute the identity of the FlagDe...