LSSTApplications  21.0.0+75b29a8a7f,21.0.0+e70536a077,21.0.0-1-ga51b5d4+62c747d40b,21.0.0-11-ga6ea59e8e+47cba9fc36,21.0.0-2-g103fe59+914993bf7c,21.0.0-2-g1367e85+e2614ded12,21.0.0-2-g45278ab+e70536a077,21.0.0-2-g4bc9b9f+7b2b5f8678,21.0.0-2-g5242d73+e2614ded12,21.0.0-2-g54e2caa+6403186824,21.0.0-2-g7f82c8f+3ac4acbffc,21.0.0-2-g8dde007+04a6aea1af,21.0.0-2-g8f08a60+9402881886,21.0.0-2-ga326454+3ac4acbffc,21.0.0-2-ga63a54e+81dd751046,21.0.0-2-gc738bc1+5f65c6e7a9,21.0.0-2-gde069b7+26c92b3210,21.0.0-2-gecfae73+0993ddc9bd,21.0.0-2-gfc62afb+e2614ded12,21.0.0-21-gba890a8+5a4f502a26,21.0.0-23-g9966ff26+03098d1af8,21.0.0-3-g357aad2+8ad216c477,21.0.0-3-g4be5c26+e2614ded12,21.0.0-3-g6d51c4a+4d2fe0280d,21.0.0-3-g7d9da8d+75b29a8a7f,21.0.0-3-gaa929c8+522e0f12c2,21.0.0-3-ge02ed75+4d2fe0280d,21.0.0-4-g3300ddd+e70536a077,21.0.0-4-gc004bbf+eac6615e82,21.0.0-4-gccdca77+f94adcd104,21.0.0-4-gd1c1571+18b81799f9,21.0.0-5-g7b47fff+4d2fe0280d,21.0.0-5-gb155db7+d2632f662b,21.0.0-5-gdf36809+637e4641ee,21.0.0-6-g722ad07+28c848f42a,21.0.0-7-g959bb79+522e0f12c2,21.0.0-7-gfd72ab2+cf01990774,21.0.0-9-g87fb7b8d+e2ab11cdd6,w.2021.04
LSSTDataManagementBasePackage
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.
146  PTR(afw::detection::Footprint) footprint = measRecord.getFootprint();
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  afw::detection::Footprint const& footprint(*measRecord.getFootprint());
165  footprint.getSpans()->clippedTo(mimage.getBBox())->applyFunctor(func, *(mimage.getMask()));
166 
167  // Set the EDGE flag if the bitmask has NO_DATA set
168  try {
169  if (func.getBits() & MaskedImageF::Mask::getPlaneBitMask("NO_DATA")) {
170  measRecord.set(_anyKeys.at("EDGE"), true);
171  }
173  throw LSST_EXCEPT(FatalAlgorithmError, err.what());
174  }
175 
176  // update the source record for the any keys
177  updateFlags(_anyKeys, func, measRecord);
178 
179  // Check for bits set in the 3x3 box around the center
180  geom::Point2I llc(afw::image::positionToIndex(center.getX()) - 1,
181  afw::image::positionToIndex(center.getY()) - 1);
182 
183  func.reset();
184  auto spans = std::make_shared<afw::geom::SpanSet>(geom::Box2I(llc, geom::ExtentI(3)));
185  afw::detection::Footprint const middle(spans); // central 3x3
186  middle.getSpans()->clippedTo(mimage.getBBox())->applyFunctor(func, *(mimage.getMask()));
187 
188  // Update the flags which have to do with the center of the footprint
189  updateFlags(_centerKeys, func, measRecord);
190 }
191 
193  measRecord.set(_generalFailureKey, true);
194 }
195 
196 } // namespace base
197 } // namespace meas
198 } // namespace lsst
lsst::meas::base::PixelFlagsAlgorithm::PixelFlagsAlgorithm
PixelFlagsAlgorithm(Control const &ctrl, std::string const &name, afw::table::Schema &schema)
Definition: PixelFlags.cc:76
std::string
STL class.
Psf.h
lsst::log.log.logContinued.error
def error(fmt, *args)
Definition: logContinued.py:213
lsst::afw::image::positionToIndex
int positionToIndex(double pos)
Convert image position to nearest integer index.
Definition: ImageUtils.h:69
lsst::meas::base::PixelFlagsAlgorithm::fail
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:192
lsst::afw::table::SourceRecord
Record class that contains measurements made on a single exposure.
Definition: Source.h:80
lsst::afw::image::Exposure< float >
lsst::afw::table::SourceRecord::getCentroid
CentroidSlotDefinition::MeasValue getCentroid() const
Get the value of the Centroid slot measurement.
Definition: Source.h:572
lsst::meas::modelfit::Pixel
float Pixel
Typedefs to be used for pixel values.
Definition: common.h:37
lsst::meas::base::PixelFlagsControl::masksFpAnywhere
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
lsst::afw::detection::Footprint::getSpans
std::shared_ptr< geom::SpanSet > getSpans() const
Return a shared pointer to the SpanSet.
Definition: Footprint.h:115
lsst::meas::base::MeasurementError
Exception to be thrown when a measurement algorithm experiences a known failure mode.
Definition: exceptions.h:48
PixelFlags.h
This is the algorithm for PixelFlags.
lsst::meas::base::FatalAlgorithmError
Exception to be thrown when a measurement algorithm experiences a fatal error.
Definition: exceptions.h:76
lsst::afw::table::Schema
Defines the fields and offsets for a table.
Definition: Schema.h:50
lsst::afw::geom.transform.transformContinued.name
string name
Definition: transformContinued.py:32
lsst::afw::image::Exposure::getMaskedImage
MaskedImageT getMaskedImage()
Return the MaskedImage.
Definition: Exposure.h:228
lsst::meas::base::PixelFlagsAlgorithm::measure
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
lsst::afw::table::SourceRecord::getFootprint
std::shared_ptr< Footprint > getFootprint() const
Definition: Source.h:100
schema
table::Schema schema
Definition: python.h:134
std::isnan
T isnan(T... args)
std::map::at
T at(T... args)
lsst::meas::base::PixelFlagsControl::masksFpCenter
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
lsst::meas::base::PixelFlagsAlgorithm::KeyMap
std::map< std::string, afw::table::Key< afw::table::Flag > > KeyMap
Definition: PixelFlags.h:77
PTR
#define PTR(...)
Definition: base.h:41
std::transform
T transform(T... args)
Source.h
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
SpanSet.h
LSST_EXCEPT
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
lsst::afw::table::SourceRecord::getTable
std::shared_ptr< SourceTable const > getTable() const
Definition: Source.h:104
lsst.pex::exceptions::InvalidParameterError
Reports invalid arguments.
Definition: Runtime.h:66
std::string::begin
T begin(T... args)
lsst::geom::Point< int, 2 >
lsst::geom::Box2I
An integer coordinate rectangle.
Definition: Box.h:55
std::string::end
T end(T... args)
lsst::meas::base::PixelFlagsControl
A C++ control class to handle PixelFlagsAlgorithm's configuration.
Definition: PixelFlags.h:44
lsst::afw::table::BaseRecord::set
void set(Key< T > const &key, U const &value)
Set value of a field for the given key.
Definition: BaseRecord.h:164
lsst::afw::detection::Footprint
Class to describe the properties of a detected object from an image.
Definition: Footprint.h:63
lsst::geom::Extent< int, 2 >
lsst.pex::exceptions::Exception::what
virtual char const * what(void) const noexcept
Return a character string summarizing this exception.
Definition: Exception.cc:99
Box.h
lsst.pex::exceptions::RuntimeError
Reports errors that are due to events beyond the control of the program.
Definition: Runtime.h:104
Point.h