LSST Applications g07dc498a13+7851b72aa9,g1409bbee79+7851b72aa9,g1a7e361dbc+7851b72aa9,g1fd858c14a+a4e18a0dda,g33399d78f5+a0324bbf49,g35bb328faa+e55fef2c71,g3bd4b5ce2c+8524b1c0c8,g53246c7159+e55fef2c71,g579b87e3d2+a58ba40925,g60b5630c4e+7b4465799a,g78460c75b0+8427c4cc8f,g78619a8342+5517f7db9e,g786e29fd12+307f82e6af,g8534526c7b+8e1c6b434f,g89139ef638+7851b72aa9,g8b49a6ea8e+7b4465799a,g8ffcb69f3d+0065d7bbc8,g9125e01d80+e55fef2c71,g97b8272a79+a8c4cb337e,g989de1cb63+7851b72aa9,g9f33ca652e+747bd1f1f9,gaaedd4e678+7851b72aa9,gabe3b4be73+9c0c3c7524,gb1101e3267+c03a154bbb,gb58c049af0+28045f66fd,gc1fe0db326+7b4465799a,gca43fec769+e55fef2c71,gce7788e931+99adca4f64,gcf25f946ba+a0324bbf49,gd397e13551+18f805d5e0,gd6cbbdb0b4+f6e5445f66,gde0f65d7ad+78b6ec8427,ge278dab8ac+b4c2c8faf7,geab183fbe5+7b4465799a,gecb8035dfe+1f480bec5e,gf58bf46354+e55fef2c71,gf92a8ffd38+e7bc33f3ea,gfe7187db8c+38a2c5c626,w.2025.03
LSST Data Management Base Package
|
A pixel of a MaskedImage. More...
#include <Pixel.h>
Public Types | |
using | ImagePixelT = _ImagePixelT |
using | MaskPixelT = _MaskPixelT |
using | VariancePixelT = _VariancePixelT |
Public Member Functions | |
Pixel (ImagePixelT const &image, MaskPixelT const &mask=0x0, VariancePixelT const &variance=0) | |
Construct a Pixel from references to its image/mask/variance components. | |
Pixel (SinglePixel< ImagePixelT, MaskPixelT, VariancePixelT > &rhs) | |
Pixel (Pixel const &rhs)=default | |
Pixel (Pixel &&rhs)=default | |
~Pixel ()=default | |
Pixel | operator= (Pixel const &rhs) |
template<typename rhsExpr > | |
Pixel | operator= (rhsExpr const &rhs) |
Assign a Pixel by evaluating an expression. | |
Pixel | operator= (Pixel &&rhs) |
Pixel | operator= (double const &rhs_image) |
set the image part of a Pixel to rhs_image (the mask and variance are set to 0) | |
Pixel | operator= (int const &rhs_image) |
set the image part of a Pixel to rhs_image (the mask and variance are set to 0) | |
ImagePixelT | image () const |
Return the image part of a Pixel. | |
MaskPixelT | mask () const |
Return the mask part of a Pixel. | |
VariancePixelT | variance () const |
Return the variance part of a Pixel. | |
std::size_t | hash_value () const noexcept |
Return a hash of this object. | |
Friends | |
template<typename T1 , typename T2 , typename T3 > | |
bool | operator== (Pixel const &lhs, Pixel< T1, T2, T3 > const &rhs) |
Return true if two pixels are equal (in all three of image, mask, and variance) Fix C++20 compilation ambiguous overload problem by creating overloads. | |
template<typename T1 , typename T2 , typename T3 > | |
bool | operator== (Pixel const &lhs, SinglePixel< T1, T2, T3 > const &rhs) |
template<typename T1 > | |
bool | operator!= (Pixel const &lhs, T1 const &rhs) |
Return true iff two pixels are unequal (in at least one of image, mask, and variance) | |
template<typename ExprT > | |
Pixel | operator+= (Pixel const &e1, ExprT const &e2) |
Evaluate e1 += e2, and return e1. | |
template<typename ExprT > | |
Pixel | operator-= (Pixel const &e1, ExprT const &e2) |
Evaluate e1 -= e2, and return e1. | |
template<typename ExprT > | |
Pixel | operator*= (Pixel const &e1, ExprT const &e2) |
Evaluate e1 *= e2, and return e1. | |
template<typename ExprT > | |
Pixel | operator/= (Pixel const &e1, ExprT const &e2) |
Evaluate e1 /= e2, and return e1. | |
A pixel of a MaskedImage.
using lsst::afw::image::pixel::Pixel< _ImagePixelT, _MaskPixelT, _VariancePixelT >::ImagePixelT = _ImagePixelT |
using lsst::afw::image::pixel::Pixel< _ImagePixelT, _MaskPixelT, _VariancePixelT >::MaskPixelT = _MaskPixelT |
using lsst::afw::image::pixel::Pixel< _ImagePixelT, _MaskPixelT, _VariancePixelT >::VariancePixelT = _VariancePixelT |
|
inline |
Construct a Pixel from references to its image/mask/variance components.
Definition at line 151 of file Pixel.h.
|
inline |
|
default |
|
default |
|
default |
|
inlinenoexcept |
Return a hash of this object.
Definition at line 232 of file Pixel.h.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Assign a Pixel by evaluating an expression.
We use C++ template expressions to build a compile-time parse tree to evaluate Pixel expressions; this is where we evaluate the rhs and set the Pixel's values
Definition at line 177 of file Pixel.h.
|
inline |
|
friend |
|
friend |
Evaluate e1 *= e2, and return e1.
Definition at line 262 of file Pixel.h.
|
friend |
|
friend |
|
friend |
|
friend |
Return true if two pixels are equal (in all three of image, mask, and variance) Fix C++20 compilation ambiguous overload problem by creating overloads.
Definition at line 217 of file Pixel.h.
|
friend |