LSST Applications g0b6bd0c080+a72a5dd7e6,g1182afd7b4+2a019aa3bb,g17e5ecfddb+2b8207f7de,g1d67935e3f+06cf436103,g38293774b4+ac198e9f13,g396055baef+6a2097e274,g3b44f30a73+6611e0205b,g480783c3b1+98f8679e14,g48ccf36440+89c08d0516,g4b93dc025c+98f8679e14,g5c4744a4d9+a302e8c7f0,g613e996a0d+e1c447f2e0,g6c8d09e9e7+25247a063c,g7271f0639c+98f8679e14,g7a9cd813b8+124095ede6,g9d27549199+a302e8c7f0,ga1cf026fa3+ac198e9f13,ga32aa97882+7403ac30ac,ga786bb30fb+7a139211af,gaa63f70f4e+9994eb9896,gabf319e997+ade567573c,gba47b54d5d+94dc90c3ea,gbec6a3398f+06cf436103,gc6308e37c7+07dd123edb,gc655b1545f+ade567573c,gcc9029db3c+ab229f5caf,gd01420fc67+06cf436103,gd877ba84e5+06cf436103,gdb4cecd868+6f279b5b48,ge2d134c3d5+cc4dbb2e3f,ge448b5faa6+86d1ceac1d,gecc7e12556+98f8679e14,gf3ee170dca+25247a063c,gf4ac96e456+ade567573c,gf9f5ea5b4d+ac198e9f13,gff490e6085+8c2580be5c,w.2022.27
LSST Data Management Base Package
PixelFlags.cc
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2/*
3 * LSST Data Management System
4 * Copyright 2008-2013 LSST Corporation.
5 *
6 * This product includes software developed by the
7 * LSST Project (http://www.lsst.org/).
8 *
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the LSST License Statement and
20 * the GNU General Public License along with this program. If not,
21 * see <http://www.lsstcorp.org/LegalNotices/>.
22 */
23
24#include <cctype> // ::tolower
25#include <algorithm> // std::transform
26#include <cmath>
27
28#include "ndarray/eigen.h"
29
30#include "lsst/geom/Box.h"
31#include "lsst/geom/Point.h"
36
37namespace lsst {
38namespace meas {
39namespace base {
40namespace {
41template <typename MaskedImageT>
42class FootprintBits {
43public:
44 explicit FootprintBits() : _bits(0) {}
45
47 void reset() { _bits = 0x0; }
48
49 void operator()(geom::Point2I const& point, typename MaskedImageT::Mask::Pixel const& value) {
50 _bits |= value;
51 }
52
54 typename MaskedImageT::Mask::Pixel getBits() const { return _bits; }
55
56private:
57 typename MaskedImageT::Mask::Pixel _bits;
58};
59
60typedef afw::image::MaskedImage<float> MaskedImageF;
61
62void updateFlags(PixelFlagsAlgorithm::KeyMap const& maskFlagToPixelFlag,
63 const FootprintBits<MaskedImageF>& func, afw::table::SourceRecord& measRecord) {
64 for (auto const& i : maskFlagToPixelFlag) {
65 try {
66 if (func.getBits() & MaskedImageF::Mask::getPlaneBitMask(i.first)) {
67 measRecord.set(i.second, true);
68 }
69 } catch (pex::exceptions::InvalidParameterError& err) {
70 throw LSST_EXCEPT(FatalAlgorithmError, err.what());
71 }
72 }
73}
74} // end anonymous namespace
75
78 : _ctrl(ctrl) {
79 // Add generic keys first, which don't correspond to specific mask planes
80 _generalFailureKey = schema.addField<afw::table::Flag>(
81 name + "_flag", "General failure flag, set if anything went wrong");
82 _offImageKey =
83 schema.addField<afw::table::Flag>(name + "_flag" + "_offimage", "Source center is off image");
84 // Set all the flags that correspond to mask planes anywhere in the footprint
85 _anyKeys["EDGE"] = schema.addField<afw::table::Flag>(
86 name + "_flag_edge", "Source is outside usable exposure region (masked EDGE or NO_DATA)");
87 _anyKeys["INTRP"] = schema.addField<afw::table::Flag>(name + "_flag_interpolated",
88 "Interpolated pixel in the Source footprint");
89 _anyKeys["SAT"] = schema.addField<afw::table::Flag>(name + "_flag_saturated",
90 "Saturated pixel in the Source footprint");
91 _anyKeys["CR"] =
92 schema.addField<afw::table::Flag>(name + "_flag_cr", "Cosmic ray in the Source footprint");
93 _anyKeys["BAD"] =
94 schema.addField<afw::table::Flag>(name + "_flag_bad", "Bad pixel in the Source footprint");
95 _anyKeys["SUSPECT"] = schema.addField<afw::table::Flag>(name + "_flag_suspect",
96 "Source's footprint includes suspect pixels");
97 // Flags that correspond to mask bits which occur in the center of the object
98 _centerKeys["INTRP"] = schema.addField<afw::table::Flag>(name + "_flag_interpolatedCenter",
99 "Interpolated pixel in the Source center");
100 _centerKeys["SAT"] = schema.addField<afw::table::Flag>(name + "_flag_saturatedCenter",
101 "Saturated pixel in the Source center");
102 _centerKeys["CR"] =
103 schema.addField<afw::table::Flag>(name + "_flag_crCenter", "Cosmic ray in the Source center");
104 _centerKeys["SUSPECT"] = schema.addField<afw::table::Flag>(name + "_flag_suspectCenter",
105 "Source's center is close to suspect pixels");
106
107 // Read in the flags passed from the configuration, and add them to the schema
108 for (auto const& i : _ctrl.masksFpCenter) {
109 std::string maskName(i);
110 std::transform(maskName.begin(), maskName.end(), maskName.begin(), ::tolower);
111 _centerKeys[i] = schema.addField<afw::table::Flag>(name + "_flag_" + maskName + "Center",
112 "Source center is close to " + i + " pixels");
113 }
114
115 for (auto const& i : _ctrl.masksFpAnywhere) {
116 std::string maskName(i);
117 std::transform(maskName.begin(), maskName.end(), maskName.begin(), ::tolower);
118 _anyKeys[i] = schema.addField<afw::table::Flag>(name + "_flag_" + maskName,
119 "Source footprint includes " + i + " pixels");
120 }
121}
122
124 afw::image::Exposure<float> const& exposure) const {
125 MaskedImageF mimage = exposure.getMaskedImage();
126 FootprintBits<MaskedImageF> func;
127
128 // Check if the measRecord has a valid centroid key, i.e. it was centroided
129 geom::Point2D center;
130 if (measRecord.getTable()->getCentroidSlot().getMeasKey().isValid()) {
131 center = measRecord.getCentroid();
132 // Catch NAN in centroid estimate
133 if (std::isnan(center.getX()) || std::isnan(center.getY())) {
135 "Center point passed to PixelFlagsAlgorithm is NaN");
136 }
137 } else {
138 // Set the general failure flag because using the Peak might affect
139 // the current measurement
140 measRecord.set(_generalFailureKey, true);
141 // Attempting to set pixel flags with no centroider, the center will
142 // be determined though the peak pixel. The first peak in the
143 // footprint (supplied by the measurement framework) should be the
144 // highest peak so that one will be used as a proxy for the central
145 // tendency of the distribution of flux for the record.
147 // If there is no footprint or the footprint contains no peaks, throw
148 // a runtime error.
149 if (!footprint || footprint->getPeaks().empty()) {
150 throw LSST_EXCEPT(pex::exceptions::RuntimeError, "No footprint, or no footprint peaks detected");
151 } else {
152 center.setX(footprint->getPeaks().front().getFx());
153 center.setY(footprint->getPeaks().front().getFy());
154 }
155 }
156
157 // Catch centroids off the image
158 if (!mimage.getBBox().contains(geom::Point2I(center))) {
159 measRecord.set(_offImageKey, true);
160 measRecord.set(_anyKeys.at("EDGE"), true);
161 }
162
163 // Check for bits set in the source's Footprint
164 auto footprint = measRecord.getFootprint();
165 if (!footprint) {
166 throw LSST_EXCEPT(pex::exceptions::RuntimeError, "No footprint present.");
167 }
168 auto fullSpans = footprint->getSpans();
169 if (!fullSpans) {
170 throw LSST_EXCEPT(pex::exceptions::RuntimeError, "No spans in footprint.");
171 }
172 fullSpans->clippedTo(mimage.getBBox())->applyFunctor(func, *(mimage.getMask()));
173
174 // Set the EDGE flag if the bitmask has NO_DATA set
175 try {
176 if (func.getBits() & MaskedImageF::Mask::getPlaneBitMask("NO_DATA")) {
177 measRecord.set(_anyKeys.at("EDGE"), true);
178 }
181 }
182
183 // update the source record for the any keys
184 updateFlags(_anyKeys, func, measRecord);
185
186 // Check for bits set in the 3x3 box around the center
187 geom::Point2I llc(afw::image::positionToIndex(center.getX()) - 1,
188 afw::image::positionToIndex(center.getY()) - 1);
189
190 func.reset();
191 auto spans = std::make_shared<afw::geom::SpanSet>(geom::Box2I(llc, geom::ExtentI(3)));
192 afw::detection::Footprint const middle(spans); // central 3x3
193 middle.getSpans()->clippedTo(mimage.getBBox())->applyFunctor(func, *(mimage.getMask()));
194
195 // Update the flags which have to do with the center of the footprint
196 updateFlags(_centerKeys, func, measRecord);
197}
198
200 measRecord.set(_generalFailureKey, true);
201}
202
203} // namespace base
204} // namespace meas
205} // namespace lsst
table::Key< std::string > name
Definition: Amplifier.cc:116
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
This is the algorithm for PixelFlags.
table::Schema schema
Definition: python.h:134
T at(T... args)
T begin(T... args)
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
A class to contain the data, WCS, and other information needed to describe an image of the sky.
Definition: Exposure.h:72
MaskedImageT getMaskedImage()
Return the MaskedImage.
Definition: Exposure.h:228
void set(Key< T > const &key, U const &value)
Set value of a field for the given key.
Definition: BaseRecord.h:164
Defines the fields and offsets for a table.
Definition: Schema.h:51
Record class that contains measurements made on a single exposure.
Definition: Source.h:78
CentroidSlotDefinition::MeasValue getCentroid() const
Get the value of the Centroid slot measurement.
Definition: Source.h:570
std::shared_ptr< SourceTable const > getTable() const
Definition: Source.h:102
std::shared_ptr< Footprint > getFootprint() const
Definition: Source.h:98
An integer coordinate rectangle.
Definition: Box.h:55
Exception to be thrown when a measurement algorithm experiences a fatal error.
Definition: exceptions.h:76
Exception to be thrown when a measurement algorithm experiences a known failure mode.
Definition: exceptions.h:48
std::map< std::string, afw::table::Key< afw::table::Flag > > KeyMap
Definition: PixelFlags.h:77
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: PixelFlags.cc:199
PixelFlagsAlgorithm(Control const &ctrl, std::string const &name, afw::table::Schema &schema)
Definition: PixelFlags.cc:76
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: PixelFlags.cc:123
A C++ control class to handle PixelFlagsAlgorithm's configuration.
Definition: PixelFlags.h:44
std::vector< std::string > masksFpAnywhere
"List of mask planes to be searched for which occur anywhere within a footprint. " "If any of the pla...
Definition: PixelFlags.h:51
std::vector< std::string > masksFpCenter
"List of mask planes to be searched for which occur in the center of a footprint. " "If any of the pl...
Definition: PixelFlags.h:48
virtual char const * what(void) const noexcept
Return a character string summarizing this exception.
Definition: Exception.cc:99
Reports invalid arguments.
Definition: Runtime.h:66
Reports errors that are due to events beyond the control of the program.
Definition: Runtime.h:104
T end(T... args)
T isnan(T... args)
int positionToIndex(double pos)
Convert image position to nearest integer index.
Definition: ImageUtils.h:69
float Pixel
Typedefs to be used for pixel values.
Definition: common.h:37
A base class for image defects.
T transform(T... args)