|
LSSTApplications
1.1.2+25,10.0+13,10.0+132,10.0+133,10.0+224,10.0+41,10.0+8,10.0-1-g0f53050+14,10.0-1-g4b7b172+19,10.0-1-g61a5bae+98,10.0-1-g7408a83+3,10.0-1-gc1e0f5a+19,10.0-1-gdb4482e+14,10.0-11-g3947115+2,10.0-12-g8719d8b+2,10.0-15-ga3f480f+1,10.0-2-g4f67435,10.0-2-gcb4bc6c+26,10.0-28-gf7f57a9+1,10.0-3-g1bbe32c+14,10.0-3-g5b46d21,10.0-4-g027f45f+5,10.0-4-g86f66b5+2,10.0-4-gc4fccf3+24,10.0-40-g4349866+2,10.0-5-g766159b,10.0-5-gca2295e+25,10.0-6-g462a451+1
LSSTDataManagementBasePackage
|
A reusable struct for moments-based shape measurements. More...
#include <ShapeUtilities.h>
Public Member Functions | |
| ShapeResult () | |
| Constructor; initializes everything to NaN. More... | |
| ShapeResult (ShapeElement _xx, ShapeElement _yy, ShapeElement _xy, ShapeCov const &matrix) | |
| Constructor; initializes everything from values. More... | |
| ShapeResult (ShapeElement _xx, ShapeElement _yy, ShapeElement _xy, ErrElement _xxSigma, ErrElement _yySigma, ErrElement _xySigma) | |
| Constructor; initializes everything from values. More... | |
| Shape const | getShape () const |
| Return an afw::geom::ellipses object corresponding to xx, yy, xy. More... | |
| afw::geom::ellipses::Quadrupole | getQuadrupole () |
| void | setShape (Shape const &shape) |
| Set struct elements from the given Quadrupole object. More... | |
| ShapeCov const | getShapeErr () const |
| Return the 3x3 symmetric covariance matrix, with rows and columns ordered (xx, yy, xy) More... | |
| void | setShapeErr (ShapeCov const &matrix) |
| Set the struct uncertainty elements from the given matrix, with rows and columns ordered (xx, yy, xy) More... | |
| void | setShapeErr (ErrElement _xxSigma, ErrElement _yySigma, ErrElement _xySigma) |
| Set the struct uncertainty elements from the given values. More... | |
Public Attributes | |
| ShapeElement | xx |
| ShapeElement | yy |
| ShapeElement | xy |
| ErrElement | xxSigma |
| 1-Sigma uncertainty on xx (sqrt of variance) More... | |
| ErrElement | yySigma |
| 1-Sigma uncertainty on yy (sqrt of variance) More... | |
| ErrElement | xySigma |
| 1-Sigma uncertainty on xy (sqrt of variance) More... | |
| ErrElement | xx_yy_Cov |
| xx,yy term in the uncertainty convariance matrix More... | |
| ErrElement | xx_xy_Cov |
| xx,xy term in the uncertainty convariance matrix More... | |
| ErrElement | yy_xy_Cov |
| yy,xy term in the uncertainty convariance matrix More... | |
A reusable struct for moments-based shape measurements.
Shape measurements and their errors should always be in pixels coordinates. This struct should generally be preferred over a custom struct with other ellipse parametrizations unless the measurement takes place in another parametrization and a transformation to this one would result in a loss of information or obfuscate the results of the measurement (i.e. use this one unless you have a good reason not to).
Definition at line 40 of file ShapeUtilities.h.
| lsst::meas::base::ShapeResult::ShapeResult | ( | ) |
Constructor; initializes everything to NaN.
Definition at line 28 of file ShapeUtilities.cc.
|
inlineexplicit |
Constructor; initializes everything from values.
Definition at line 55 of file ShapeUtilities.h.
|
inlineexplicit |
Constructor; initializes everything from values.
Definition at line 68 of file ShapeUtilities.h.
|
inline |
Definition at line 90 of file ShapeUtilities.h.
| Shape const lsst::meas::base::ShapeResult::getShape | ( | ) | const |
Return an afw::geom::ellipses object corresponding to xx, yy, xy.
This method can be used to return an average radius for the measured shape, e.g. getShape().getDeterminantRadius()
Definition at line 40 of file ShapeUtilities.cc.
| ShapeCov const lsst::meas::base::ShapeResult::getShapeErr | ( | ) | const |
Return the 3x3 symmetric covariance matrix, with rows and columns ordered (xx, yy, xy)
Definition at line 48 of file ShapeUtilities.cc.
| void lsst::meas::base::ShapeResult::setShape | ( | Shape const & | shape | ) |
Set struct elements from the given Quadrupole object.
Definition at line 42 of file ShapeUtilities.cc.
| void lsst::meas::base::ShapeResult::setShapeErr | ( | ShapeCov const & | matrix | ) |
Set the struct uncertainty elements from the given matrix, with rows and columns ordered (xx, yy, xy)
Definition at line 57 of file ShapeUtilities.cc.
| void lsst::meas::base::ShapeResult::setShapeErr | ( | ErrElement | _xxSigma, |
| ErrElement | _yySigma, | ||
| ErrElement | _xySigma | ||
| ) |
Set the struct uncertainty elements from the given values.
Definition at line 66 of file ShapeUtilities.cc.
| ShapeElement lsst::meas::base::ShapeResult::xx |
Definition at line 41 of file ShapeUtilities.h.
| ErrElement lsst::meas::base::ShapeResult::xx_xy_Cov |
xx,xy term in the uncertainty convariance matrix
Definition at line 48 of file ShapeUtilities.h.
| ErrElement lsst::meas::base::ShapeResult::xx_yy_Cov |
xx,yy term in the uncertainty convariance matrix
Definition at line 47 of file ShapeUtilities.h.
| ErrElement lsst::meas::base::ShapeResult::xxSigma |
1-Sigma uncertainty on xx (sqrt of variance)
Definition at line 44 of file ShapeUtilities.h.
| ShapeElement lsst::meas::base::ShapeResult::xy |
Definition at line 43 of file ShapeUtilities.h.
| ErrElement lsst::meas::base::ShapeResult::xySigma |
1-Sigma uncertainty on xy (sqrt of variance)
Definition at line 46 of file ShapeUtilities.h.
| ShapeElement lsst::meas::base::ShapeResult::yy |
Definition at line 42 of file ShapeUtilities.h.
| ErrElement lsst::meas::base::ShapeResult::yy_xy_Cov |
yy,xy term in the uncertainty convariance matrix
Definition at line 49 of file ShapeUtilities.h.
| ErrElement lsst::meas::base::ShapeResult::yySigma |
1-Sigma uncertainty on yy (sqrt of variance)
Definition at line 45 of file ShapeUtilities.h.
1.8.5