|
LSST Applications g00d0e8bbd7+8c5ae1fdc5,g013ef56533+603670b062,g083dd6704c+2e189452a7,g199a45376c+0ba108daf9,g1c5cce2383+bc9f6103a4,g1fd858c14a+cd69ed4fc1,g210f2d0738+c4742f2e9e,g262e1987ae+612fa42d85,g29ae962dfc+83d129e820,g2cef7863aa+aef1011c0b,g35bb328faa+8c5ae1fdc5,g3fd5ace14f+5eaa884f2a,g47891489e3+e32160a944,g53246c7159+8c5ae1fdc5,g5b326b94bb+dcc56af22d,g64539dfbff+c4742f2e9e,g67b6fd64d1+e32160a944,g74acd417e5+c122e1277d,g786e29fd12+668abc6043,g87389fa792+8856018cbb,g88cb488625+47d24e4084,g89139ef638+e32160a944,g8d7436a09f+d14b4ff40a,g8ea07a8fe4+b212507b11,g90f42f885a+e1755607f3,g97be763408+34be90ab8c,g98df359435+ec1fa61bf1,ga2180abaac+8c5ae1fdc5,ga9e74d7ce9+43ac651df0,gbf99507273+8c5ae1fdc5,gc2a301910b+c4742f2e9e,gca7fc764a6+e32160a944,gd7ef33dd92+e32160a944,gdab6d2f7ff+c122e1277d,gdb1e2cdc75+1b18322db8,ge410e46f29+e32160a944,ge41e95a9f2+c4742f2e9e,geaed405ab2+0d91c11c6d,w.2025.44
LSST Data Management Base Package
|
A reusable struct for moments-based shape measurements. More...
#include <ShapeUtilities.h>
Public Member Functions | |
| ShapeResult () | |
| Constructor; initializes everything to NaN. | |
| ShapeResult (ShapeElement xx_, ShapeElement yy_, ShapeElement xy_, ShapeCov const &matrix) | |
| Constructor; initializes everything from values. | |
| ShapeResult (ShapeElement xx_, ShapeElement yy_, ShapeElement xy_, ErrElement xxErr_, ErrElement yyErr_, ErrElement xyErr_) | |
| Constructor; initializes everything from values. | |
| Shape const | getShape () const |
| Return an afw::geom::ellipses object corresponding to xx, yy, xy. | |
| afw::geom::ellipses::Quadrupole | getQuadrupole () |
| void | setShape (Shape const &shape) |
| Set struct elements from the given Quadrupole object. | |
| ShapeCov const | getShapeErr () const |
| Return the 3x3 symmetric covariance matrix, with rows and columns ordered (xx, yy, xy) | |
| void | setShapeErr (ShapeCov const &matrix) |
| Set the struct standard deviation elements from the given matrix, with rows and columns ordered (xx, yy, xy) | |
| void | setShapeErr (ErrElement xxErr, ErrElement yyErr, ErrElement xyErr) |
| Set the struct standard deviation elements from the given values. | |
Public Attributes | |
| ShapeElement | xx |
| image or model second moment for x^2 | |
| ShapeElement | yy |
| image or model second moment for y^2 | |
| ShapeElement | xy |
| image or model second moment for xy^2 | |
| ErrElement | xxErr |
| standard deviation of xx | |
| ErrElement | yyErr |
| standard deviation of yy | |
| ErrElement | xyErr |
| standard deviation of xy | |
| ErrElement | xx_yy_Cov |
| xx,yy term in the uncertainty convariance matrix | |
| ErrElement | xx_xy_Cov |
| xx,xy term in the uncertainty convariance matrix | |
| ErrElement | yy_xy_Cov |
| yy,xy term in the uncertainty convariance matrix | |
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 43 of file ShapeUtilities.h.
| lsst::meas::base::ShapeResult::ShapeResult | ( | ) |
Constructor; initializes everything to NaN.
Definition at line 30 of file ShapeUtilities.cc.
|
inlineexplicit |
Constructor; initializes everything from values.
Definition at line 58 of file ShapeUtilities.h.
|
inlineexplicit |
|
inline |
Definition at line 91 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 41 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 49 of file ShapeUtilities.cc.
| void lsst::meas::base::ShapeResult::setShape | ( | Shape const & | shape | ) |
Set struct elements from the given Quadrupole object.
Definition at line 43 of file ShapeUtilities.cc.
| void lsst::meas::base::ShapeResult::setShapeErr | ( | ErrElement | xxErr, |
| ErrElement | yyErr, | ||
| ErrElement | xyErr ) |
| void lsst::meas::base::ShapeResult::setShapeErr | ( | ShapeCov const & | matrix | ) |
Set the struct standard deviation elements from the given matrix, with rows and columns ordered (xx, yy, xy)
Definition at line 56 of file ShapeUtilities.cc.
| ShapeElement lsst::meas::base::ShapeResult::xx |
image or model second moment for x^2
Definition at line 44 of file ShapeUtilities.h.
| ErrElement lsst::meas::base::ShapeResult::xx_xy_Cov |
xx,xy term in the uncertainty convariance matrix
Definition at line 51 of file ShapeUtilities.h.
| ErrElement lsst::meas::base::ShapeResult::xx_yy_Cov |
xx,yy term in the uncertainty convariance matrix
Definition at line 50 of file ShapeUtilities.h.
| ErrElement lsst::meas::base::ShapeResult::xxErr |
standard deviation of xx
Definition at line 47 of file ShapeUtilities.h.
| ShapeElement lsst::meas::base::ShapeResult::xy |
image or model second moment for xy^2
Definition at line 46 of file ShapeUtilities.h.
| ErrElement lsst::meas::base::ShapeResult::xyErr |
standard deviation of xy
Definition at line 49 of file ShapeUtilities.h.
| ShapeElement lsst::meas::base::ShapeResult::yy |
image or model second moment for y^2
Definition at line 45 of file ShapeUtilities.h.
| ErrElement lsst::meas::base::ShapeResult::yy_xy_Cov |
yy,xy term in the uncertainty convariance matrix
Definition at line 52 of file ShapeUtilities.h.
| ErrElement lsst::meas::base::ShapeResult::yyErr |
standard deviation of yy
Definition at line 48 of file ShapeUtilities.h.