Loading [MathJax]/extensions/tex2jax.js
LSST Applications g04dff08e69+42feea4ef2,g0fba68d861+a0b9de4ea6,g1ec0fe41b4+f536777771,g1fd858c14a+42269675ea,g35bb328faa+fcb1d3bbc8,g4af146b050+bbef1ba6f0,g4d2262a081+8f21adb3a6,g53246c7159+fcb1d3bbc8,g5a012ec0e7+b20b785ecb,g60b5630c4e+43e3f0d37c,g6273192d42+e9a7147bac,g67b6fd64d1+4086c0989b,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g7bbe65ff3e+43e3f0d37c,g8352419a5c+fcb1d3bbc8,g87b7deb4dc+43704db330,g8852436030+eb2388797a,g89139ef638+4086c0989b,g9125e01d80+fcb1d3bbc8,g94187f82dc+43e3f0d37c,g989de1cb63+4086c0989b,g9d31334357+43e3f0d37c,g9f33ca652e+9b312035f9,gabe3b4be73+1e0a283bba,gabf8522325+fa80ff7197,gb1101e3267+61f2793e68,gb58c049af0+f03b321e39,gb89ab40317+4086c0989b,gc0bb628dac+834c1753f9,gcf25f946ba+eb2388797a,gd6cbbdb0b4+af3c3595f5,gde0f65d7ad+9e0145b227,ge278dab8ac+d65b3c2b70,ge410e46f29+4086c0989b,gf23fb2af72+37a5db1cfd,gf67bdafdda+4086c0989b,v29.0.0.rc7
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
CentroidUtilities.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2/*
3 * LSST Data Management System
4 * Copyright 2008-2014 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#ifndef LSST_MEAS_BASE_CentroidUtilities_h_INCLUDED
25#define LSST_MEAS_BASE_CentroidUtilities_h_INCLUDED
26
28#include "lsst/geom/Point.h"
33
34namespace lsst {
35namespace meas {
36namespace base {
37
47
50
53 : x(x_),
54 y(y_),
55 xErr(std::sqrt(matrix(0, 0))),
56 yErr(std::sqrt(matrix(1, 1))),
57 x_y_Cov(matrix(0, 1)) {}
58
61 : x(x_), y(y_), xErr(xErr_), yErr(yErr_), x_y_Cov(0.0) {}
62
64 Centroid const getCentroid() const;
65
67 void setCentroid(Centroid const& centroid);
68
71
73 CentroidCov const getCentroidErr() const;
74
76 void setCentroidErr(CentroidCov const& matrix);
77
79 void setCentroidErr(ErrElement _xErr, ErrElement _yErr);
80};
81
88class CentroidResultKey : public afw::table::FunctorKey<CentroidResult> {
89public:
101 static CentroidResultKey addFields(afw::table::Schema& schema, std::string const& name,
102 std::string const& doc, UncertaintyEnum uncertainty);
103
105 CentroidResultKey() : _centroid(), _centroidErr() {}
106
110 : _centroid(centroid), _centroidErr(centroidErr) {}
111
122
124 virtual CentroidResult get(afw::table::BaseRecord const& record) const;
125
127 virtual void set(afw::table::BaseRecord& record, CentroidResult const& value) const;
128
130
131 bool operator==(CentroidResultKey const& other) const {
132 return _centroid == other._centroid && _centroidErr == other._centroidErr;
133 }
134 bool operator!=(CentroidResultKey const& other) const { return !(*this == other); }
136
138 bool isValid() const { return _centroid.isValid() && _centroidErr.isValid(); }
139
142
145
147 afw::table::Key<CentroidElement> getX() const { return _centroid.getX(); }
148
150 afw::table::Key<CentroidElement> getY() const { return _centroid.getY(); }
151
152private:
155};
156
169public:
171
172 /*
173 * @brief Perform transformation from inputCatalog to outputCatalog.
174 *
175 * @param[in] inputCatalog Source of data to be transformed
176 * @param[in,out] outputCatalog Container for transformed results
177 * @param[in] wcs World coordinate system under which transformation will take place
178 * @param[in] photoCalib Photometric calibration under which transformation will take place
179 * @throws LengthError Catalog sizes do not match
180 */
181 virtual void operator()(afw::table::SourceCatalog const& inputCatalog,
182 afw::table::BaseCatalog& outputCatalog, afw::geom::SkyWcs const& wcs,
183 afw::image::PhotoCalib const& photoCalib) const;
184
185private:
186 afw::table::CoordKey _coordKey;
188};
189
191public:
214 CentroidChecker(afw::table::Schema& schema, std::string const& name, bool inside = true,
215 double maxDistFromPeak = -1.0);
216
223 bool operator()(afw::table::SourceRecord& record) const;
224
225private:
226 bool _doFootprintCheck;
227 double _maxDistFromPeak;
235};
236} // namespace base
237} // namespace meas
238} // namespace lsst
239
240#endif // !LSST_MEAS_BASE_CentroidUtilities_h_INCLUDED
Implementation of the Photometric Calibration class.
A 2-dimensional celestial WCS that transform pixels to ICRS RA/Dec, using the LSST standard for pixel...
Definition SkyWcs.h:117
The photometric calibration of an exposure.
Definition PhotoCalib.h:114
Base class for all records.
Definition BaseRecord.h:31
A FunctorKey used to get or set celestial coordinates from a pair of lsst::geom::Angle keys.
Definition aggregates.h:292
Convenience base class that combines the OutputFunctorKey and InputFunctorKey.
Definition FunctorKey.h:74
A class used as a handle to a particular field in a table.
Definition Key.h:53
A FunctorKey used to get or set a lsst::geom::Point from an (x,y) pair of int or double Keys.
Definition aggregates.h:51
Defines the fields and offsets for a table.
Definition Schema.h:51
A mapping between the keys of two Schemas, used to copy data between them.
Record class that contains measurements made on a single exposure.
Definition Source.h:78
A proxy type for name lookups in a Schema.
Definition Schema.h:367
A coordinate class intended to represent absolute positions.
Definition Point.h:169
BaseTransform(std::string const &name)
Definition Transform.h:88
CentroidChecker(afw::table::Schema &schema, std::string const &name, bool inside=true, double maxDistFromPeak=-1.0)
Check source record produced by a centroid algorithm called "name".
bool operator()(afw::table::SourceRecord &record) const
Set the centroid to the first footprint if the centroid is either more than _dist pixels from the foo...
afw::table::Key< CentroidElement > getX() const
Return a Key for the x coordinate.
bool operator==(CentroidResultKey const &other) const
Compare the FunctorKey for equality with another, using the underlying Keys.
virtual void set(afw::table::BaseRecord &record, CentroidResult const &value) const
Set a CentroidResult in the given record.
afw::table::PointKey< CentroidElement > getCentroid() const
Return a FunctorKey to just the centroid value.
afw::table::Key< CentroidElement > getY() const
Return a Key for the y coordinate.
bool operator!=(CentroidResultKey const &other) const
afw::table::CovarianceMatrixKey< ErrElement, 2 > getCentroidErr() const
Return a FunctorKey to just the uncertainty matrix.
CentroidResultKey()
Default constructor; instance will not be usuable unless subsequently assigned to.
virtual CentroidResult get(afw::table::BaseRecord const &record) const
Get a CentroidResult from the given record.
bool isValid() const
Return True if the centroid key is valid.
CentroidResultKey(afw::table::PointKey< CentroidElement > const &centroid, afw::table::CovarianceMatrixKey< ErrElement, 2 > const &centroidErr)
Construct from a pair of Keys.
static CentroidResultKey addFields(afw::table::Schema &schema, std::string const &name, std::string const &doc, UncertaintyEnum uncertainty)
Add the appropriate fields to a Schema, and return a CentroidResultKey that manages them.
CentroidTransform(std::string const &name, afw::table::SchemaMapper &mapper)
virtual void operator()(afw::table::SourceCatalog const &inputCatalog, afw::table::BaseCatalog &outputCatalog, afw::geom::SkyWcs const &wcs, afw::image::PhotoCalib const &photoCalib) const
This defines the base of measurement transformations.
CatalogT< BaseRecord > BaseCatalog
Definition fwd.h:72
UncertaintyEnum
An enum used to specify how much uncertainty information measurement algorithms provide.
Definition constants.h:43
Eigen::Matrix< ErrElement, 2, 2, Eigen::DontAlign > CentroidCov
Definition constants.h:59
double CentroidElement
Definition constants.h:56
geom::Point< CentroidElement, 2 > Centroid
Definition constants.h:58
STL namespace.
A reusable struct for centroid measurements.
CentroidElement y
y (row) coordinate of the measured position
Centroid const getCentroid() const
Return a Point object containing the measured x and y.
CentroidElement x
x (column) coordinate of the measured position
void setCentroidErr(CentroidCov const &matrix)
Set the struct uncertainty fields from the given matrix, with rows and columns ordered (x,...
CentroidResult(CentroidElement x_, CentroidElement y_, CentroidCov const &matrix)
Constructor; initializes everything from values.
CentroidCov const getCentroidErr() const
Return the 2x2 symmetric covariance matrix, with rows and columns ordered (x, y)
void setCentroid(Centroid const &centroid)
Set the struct fields from the given Point object.
ErrElement yErr
standard deviation of y
CentroidResult()
Constructor; initializes everything to NaN.
ErrElement x_y_Cov
x,y term in the uncertainty convariance matrix
CentroidResult(CentroidElement x_, CentroidElement y_, ErrElement xErr_, ErrElement yErr_)
Constructor; initializes everything from values.
geom::Point< CentroidElement > getPoint()
Return the 2D point type corresponding to this result.
ErrElement xErr
standard deviation of x