LSST Applications  21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
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)