LSST Applications  21.0.0-147-g0e635eb1+1acddb5be5,22.0.0+052faf71bd,22.0.0+1ea9a8b2b2,22.0.0+6312710a6c,22.0.0+729191ecac,22.0.0+7589c3a021,22.0.0+9f079a9461,22.0.1-1-g7d6de66+b8044ec9de,22.0.1-1-g87000a6+536b1ee016,22.0.1-1-g8e32f31+6312710a6c,22.0.1-10-gd060f87+016f7cdc03,22.0.1-12-g9c3108e+df145f6f68,22.0.1-16-g314fa6d+c825727ab8,22.0.1-19-g93a5c75+d23f2fb6d8,22.0.1-19-gb93eaa13+aab3ef7709,22.0.1-2-g8ef0a89+b8044ec9de,22.0.1-2-g92698f7+9f079a9461,22.0.1-2-ga9b0f51+052faf71bd,22.0.1-2-gac51dbf+052faf71bd,22.0.1-2-gb66926d+6312710a6c,22.0.1-2-gcb770ba+09e3807989,22.0.1-20-g32debb5+b8044ec9de,22.0.1-23-gc2439a9a+fb0756638e,22.0.1-3-g496fd5d+09117f784f,22.0.1-3-g59f966b+1e6ba2c031,22.0.1-3-g849a1b8+f8b568069f,22.0.1-3-gaaec9c0+c5c846a8b1,22.0.1-32-g5ddfab5d3+60ce4897b0,22.0.1-4-g037fbe1+64e601228d,22.0.1-4-g8623105+b8044ec9de,22.0.1-5-g096abc9+d18c45d440,22.0.1-5-g15c806e+57f5c03693,22.0.1-7-gba73697+57f5c03693,master-g6e05de7fdc+c1283a92b8,master-g72cdda8301+729191ecac,w.2021.39
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"
32 #include "lsst/afw/detection/Psf.h"
33 #include "lsst/afw/table/Source.h"
34 #include "lsst/afw/geom/SpanSet.h"
36 
37 namespace lsst {
38 namespace meas {
39 namespace base {
40 namespace {
41 template <typename MaskedImageT>
42 class FootprintBits {
43 public:
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 
56 private:
57  typename MaskedImageT::Mask::Pixel _bits;
58 };
59 
60 typedef afw::image::MaskedImage<float> MaskedImageF;
61 
62 void 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  }
180  throw LSST_EXCEPT(FatalAlgorithmError, err.what());
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
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
std::shared_ptr< SourceTable const > getTable() const
Definition: Source.h:102
CentroidSlotDefinition::MeasValue getCentroid() const
Get the value of the Centroid slot measurement.
Definition: Source.h:570
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)