Loading [MathJax]/extensions/tex2jax.js
LSST Applications g04a91732dc+7fec47d7bc,g07dc498a13+5ab4d22ec3,g0fba68d861+565de8e5d5,g1409bbee79+5ab4d22ec3,g1a7e361dbc+5ab4d22ec3,g1fd858c14a+11200c7927,g20f46db602+25d63fd678,g35bb328faa+fcb1d3bbc8,g4d2262a081+61302e889d,g4d39ba7253+d05e267ece,g4e0f332c67+5d362be553,g53246c7159+fcb1d3bbc8,g60b5630c4e+d05e267ece,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g8048e755c2+a1301e4c20,g8852436030+163ceb82d8,g89139ef638+5ab4d22ec3,g89e1512fd8+fbb808ebce,g8d6b6b353c+d05e267ece,g9125e01d80+fcb1d3bbc8,g989de1cb63+5ab4d22ec3,g9f33ca652e+8abe617c77,ga9baa6287d+d05e267ece,gaaedd4e678+5ab4d22ec3,gabe3b4be73+1e0a283bba,gb1101e3267+fefe9ce5b1,gb58c049af0+f03b321e39,gb90eeb9370+824c420ec4,gc741bbaa4f+77ddc33078,gcf25f946ba+163ceb82d8,gd315a588df+0f88d5218e,gd6cbbdb0b4+c8606af20c,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+e6bd566e97,ge278dab8ac+932305ba37,ge82c20c137+76d20ab76d,w.2025.10
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
PsfFlux.cc
Go to the documentation of this file.
1
2// -*- lsst-c++ -*-
3/*
4 * LSST Data Management System
5 * Copyright 2008-2015 AURA/LSST.
6 *
7 * This product includes software developed by the
8 * LSST Project (http://www.lsst.org/).
9 *
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the LSST License Statement and
21 * the GNU General Public License along with this program. If not,
22 * see <http://www.lsstcorp.org/LegalNotices/>.
23 */
24
25#include <array>
26#include <cmath>
27
28#include "ndarray/eigen.h"
29
32#include "lsst/log/Log.h"
35
36namespace lsst {
37namespace meas {
38namespace base {
39namespace {
40FlagDefinitionList flagDefinitions;
41} // namespace
42
43FlagDefinition const PsfFluxAlgorithm::FAILURE = flagDefinitions.addFailureFlag();
45 flagDefinitions.add("flag_noGoodPixels", "not enough non-rejected pixels in data to attempt the fit");
46FlagDefinition const PsfFluxAlgorithm::EDGE = flagDefinitions.add(
47 "flag_edge", "object was too close to the edge of the image to use the full PSF model");
48
49FlagDefinitionList const& PsfFluxAlgorithm::getFlagDefinitions() { return flagDefinitions; }
50
51namespace {} // namespace
52
54 std::string const& logName)
55 : _ctrl(ctrl),
56 _instFluxResultKey(FluxResultKey::addFields(
57 schema, name, "instFlux derived from linear least-squares fit of PSF model")),
58 _areaKey(schema.addField<float>(name + "_area", "effective area of PSF", "pixel")),
59 _chi2Key(schema.addField<float>(name + "_chi2", "chi2 of the fitted PSF")),
60 _npixelsKey(schema.addField<int>(name + "_npixels",
61 "number of pixels that were included in the PSF fit", "pixel")),
62 _centroidExtractor(schema, name) {
63 _logName = logName.size() ? logName : name;
64 _flagHandler = FlagHandler::addFields(schema, name, getFlagDefinitions());
65}
66
68 afw::image::Exposure<float> const& exposure) const {
69 std::shared_ptr<afw::detection::Psf const> psf = exposure.getPsf();
70 if (!psf) {
71 LOGL_ERROR(getLogName(), "PsfFlux: no psf attached to exposure");
72 throw LSST_EXCEPT(FatalAlgorithmError, "PsfFlux algorithm requires a Psf with every exposure");
73 }
74 geom::Point2D position = _centroidExtractor(measRecord, _flagHandler);
75 std::shared_ptr<afw::detection::Psf::Image> psfImage = psf->computeImage(position);
76 geom::Box2I fitBBox = psfImage->getBBox();
77 fitBBox.clip(exposure.getBBox());
78 if (fitBBox != psfImage->getBBox()) {
79 _flagHandler.setValue(measRecord, FAILURE.number,
80 true); // if we had a suspect flag, we'd set that instead
81 _flagHandler.setValue(measRecord, EDGE.number, true);
82 }
83 auto fitRegionSpans = std::make_shared<afw::geom::SpanSet>(fitBBox);
84 afw::detection::Footprint fitRegion(fitRegionSpans);
85 if (!_ctrl.badMaskPlanes.empty()) {
86 afw::image::MaskPixel badBits = 0x0;
87 for (std::vector<std::string>::const_iterator i = _ctrl.badMaskPlanes.begin();
88 i != _ctrl.badMaskPlanes.end(); ++i) {
89 badBits |= exposure.getMaskedImage().getMask()->getPlaneBitMask(*i);
90 }
91 fitRegion.setSpans(fitRegion.getSpans()
92 ->intersectNot(*exposure.getMaskedImage().getMask(), badBits)
93 ->clippedTo(exposure.getMaskedImage().getMask()->getBBox()));
94 }
95 if (fitRegion.getArea() == 0) {
96 _flagHandler.setValue(measRecord, NO_GOOD_PIXELS.number, true);
97 _flagHandler.setValue(measRecord, FAILURE.number, true);
98 return;
99 }
100 typedef afw::detection::Psf::Pixel PsfPixel;
101 // SpanSet::flatten returns a new ndarray::Array, which must stay in scope
102 // while we use an Eigen::Map view of it
103 auto modelNdArray = fitRegion.getSpans()->flatten(psfImage->getArray(), psfImage->getXY0());
104 auto dataNdArray = fitRegion.getSpans()->flatten(exposure.getMaskedImage().getImage()->getArray(),
105 exposure.getXY0());
106 auto varianceNdArray = fitRegion.getSpans()->flatten(exposure.getMaskedImage().getVariance()->getArray(),
107 exposure.getXY0());
108 auto model = ndarray::asEigenMatrix(modelNdArray);
109 auto data = ndarray::asEigenMatrix(dataNdArray);
110 auto variance = ndarray::asEigenMatrix(varianceNdArray);
111 PsfPixel alpha = model.squaredNorm();
112 FluxResult result;
113 result.instFlux = model.dot(data.cast<PsfPixel>()) / alpha;
114 // If we're not using per-pixel weights to compute the instFlux, we'll still want to compute the
115 // variance as if we had, so we'll apply the weights to the model now, and update alpha.
116 result.instFluxErr = std::sqrt(model.array().square().matrix().dot(variance.cast<PsfPixel>())) / alpha;
117 measRecord.set(_areaKey, model.sum() / alpha);
118 measRecord.set(_npixelsKey, fitRegion.getSpans()->getArea());
119 if (!std::isfinite(result.instFlux) || !std::isfinite(result.instFluxErr)) {
120 throw LSST_EXCEPT(PixelValueError, "Invalid pixel value detected in image.");
121 }
122 measRecord.set(_instFluxResultKey, result);
123 auto chi2 = ((data.cast<PsfPixel>() - result.instFlux * model).array().square() /
124 variance.cast<PsfPixel>().array())
125 .sum();
126 measRecord.set(_chi2Key, chi2);
127}
128
130 _flagHandler.handleFailure(measRecord, error);
131}
132
135 : FluxTransform{name, mapper} {
136 for (std::size_t i = 0; i < PsfFluxAlgorithm::getFlagDefinitions().size(); i++) {
138 if (flag == PsfFluxAlgorithm::FAILURE) continue;
139 if (mapper.getInputSchema().getNames().count(mapper.getInputSchema().join(name, flag.name)) == 0)
140 continue;
142 mapper.getInputSchema().find<afw::table::Flag>(name + "_" + flag.name).key;
143 mapper.addMapping(key);
144 }
145}
146
147} // namespace base
148} // namespace meas
149} // namespace lsst
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
LSST DM logging module built on log4cxx.
#define LOGL_ERROR(logger, message...)
Log a error-level message using a varargs/printf style interface.
Definition Log.h:563
Class to describe the properties of a detected object from an image.
Definition Footprint.h:63
std::shared_ptr< geom::SpanSet > getSpans() const
Return a shared pointer to the SpanSet.
Definition Footprint.h:115
std::size_t getArea() const
Return the number of pixels in this Footprint.
Definition Footprint.h:173
void setSpans(std::shared_ptr< geom::SpanSet > otherSpanSet)
Sets the shared pointer to the SpanSet in the Footprint.
Definition Footprint.cc:45
math::Kernel::Pixel Pixel
Pixel type of Image returned by computeImage.
Definition Psf.h:88
A class to contain the data, WCS, and other information needed to describe an image of the sky.
Definition Exposure.h:72
void set(Key< T > const &key, U const &value)
Set value of a field for the given key.
Definition BaseRecord.h:164
A class used as a handle to a particular field in a table.
Definition Key.h:53
Defines the fields and offsets for a table.
Definition Schema.h:51
std::string join(std::string const &a, std::string const &b) const
Join strings using the field delimiter appropriate for this Schema.
Definition Schema.cc:452
std::set< std::string > getNames(bool topOnly=false) const
Return a set of field names in the schema.
Definition Schema.cc:464
SchemaItem< T > find(std::string const &name) const
Find a SchemaItem in the Schema by name.
Definition Schema.cc:467
A mapping between the keys of two Schemas, used to copy data between them.
Key< T > addMapping(Key< T > const &inputKey, bool doReplace=false)
Add a new field to the output Schema that is a copy of a field in the input Schema.
Schema const getInputSchema() const
Return the input schema (copy-on-write).
Record class that contains measurements made on a single exposure.
Definition Source.h:78
An integer coordinate rectangle.
Definition Box.h:55
void clip(Box2I const &other) noexcept
Shrink this to ensure that other.contains(*this).
Definition Box.cc:189
std::string getLogName() const
Definition Algorithm.h:66
Exception to be thrown when a measurement algorithm experiences a fatal error.
Definition exceptions.h:76
vector-type utility class to build a collection of FlagDefinitions
Definition FlagHandler.h:60
std::size_t size() const
return the current size (number of defined elements) of the collection
static FlagHandler addFields(afw::table::Schema &schema, std::string const &prefix, FlagDefinitionList const &flagDefs, FlagDefinitionList const &exclDefs=FlagDefinitionList::getEmptyList())
Add Flag fields to a schema, creating a FlagHandler object to manage them.
A FunctorKey for FluxResult.
FluxTransform(std::string const &name, afw::table::SchemaMapper &mapper)
Exception to be thrown when a measurement algorithm experiences a known failure mode.
Definition exceptions.h:48
Exception to be thrown when a measurement algorithm encounters a NaN or infinite pixel.
Definition exceptions.h:83
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 PsfFlux.cc:67
PsfFluxControl Control
A typedef to the Control object for this algorithm, defined above.
Definition PsfFlux.h:79
static FlagDefinition const FAILURE
Definition PsfFlux.h:73
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 PsfFlux.cc:129
static FlagDefinition const NO_GOOD_PIXELS
Definition PsfFlux.h:74
static FlagDefinition const EDGE
Definition PsfFlux.h:75
static FlagDefinitionList const & getFlagDefinitions()
Definition PsfFlux.cc:49
PsfFluxAlgorithm(Control const &ctrl, std::string const &name, afw::table::Schema &schema, std::string const &logName="")
Definition PsfFlux.cc:53
PsfFluxTransform(Control const &ctrl, std::string const &name, afw::table::SchemaMapper &mapper)
Definition PsfFlux.cc:133
T count(T... args)
T isfinite(T... args)
T make_shared(T... args)
std::int32_t MaskPixel
default type for Masks and MaskedImage Masks
Point< double, 2 > Point2D
Definition Point.h:324
T size(T... args)
T sqrt(T... args)
Simple class used to define and document flags The name and doc constitute the identity of the FlagDe...
Definition FlagHandler.h:40
A reusable result struct for instFlux measurements.