LSST Applications g180d380827+0f66a164bb,g2079a07aa2+86d27d4dc4,g2305ad1205+7d304bc7a0,g29320951ab+500695df56,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g33d1c0ed96+0e5473021a,g3a166c0a6a+0e5473021a,g3ddfee87b4+e42ea45bea,g48712c4677+36a86eeaa5,g487adcacf7+2dd8f347ac,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+c70619cc9d,g5a732f18d5+53520f316c,g5ea96fc03c+341ea1ce94,g64a986408d+f7cd9c7162,g858d7b2824+f7cd9c7162,g8a8a8dda67+585e252eca,g99cad8db69+469ab8c039,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,gb0e22166c9+60f28cb32d,gba4ed39666+c2a2e4ac27,gbb8dafda3b+c92fc63c7e,gbd866b1f37+f7cd9c7162,gc120e1dc64+02c66aa596,gc28159a63d+0e5473021a,gc3e9b769f7+b0068a2d9f,gcf0d15dbbd+e42ea45bea,gdaeeff99f8+f9a426f77a,ge6526c86ff+84383d05b3,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gff1a9f87cc+f7cd9c7162,w.2024.17
LSST Data Management Base Package
Loading...
Searching...
No Matches
Static Public Member Functions | List of all members
lsst::meas::algorithms::CloughTocher2DInterpolatorUtils Class Reference

This class contains static utility methods that are used by the CloughTocher2DInterpolatorTask and exists solely to provide a namespace. More...

#include <CloughTocher2DInterpolatorUtils.h>

Static Public Member Functions

static std::pair< ndarray::Array< float, 2, 2 >, ndarray::Array< float, 2, 2 > > findGoodPixelsAroundBadPixels (afw::image::MaskedImage< PixelT, afw::image::MaskPixel, afw::image::VariancePixel > const &mimage, std::vector< std::string > const &maskPlanes, int const buffer)
 Find the positions of bad pixels as defined by the masks, and also find the location and pixel value of good pixels around the bad pixels.
 
static void updateArrayFromImage (ndarray::Array< float, 2, 2 > const &pixelArray, afw::image::Image< PixelT > const &image)
 Update the values (third column) of the pixelArray from the image.
 
static void updateImageFromArray (afw::image::Image< PixelT > &image, ndarray::Array< float const, 2, 2 > const &pixelArray)
 Update the pixel values of the image from the pixelArray.
 

Detailed Description

This class contains static utility methods that are used by the CloughTocher2DInterpolatorTask and exists solely to provide a namespace.

Definition at line 44 of file CloughTocher2DInterpolatorUtils.h.

Member Function Documentation

◆ findGoodPixelsAroundBadPixels()

std::pair< ndarray::Array< float, 2, 2 >, ndarray::Array< float, 2, 2 > > lsst::meas::algorithms::CloughTocher2DInterpolatorUtils::findGoodPixelsAroundBadPixels ( afw::image::MaskedImage< PixelT, afw::image::MaskPixel, afw::image::VariancePixel > const & mimage,
std::vector< std::string > const & maskPlanes,
int const buffer )
static

Find the positions of bad pixels as defined by the masks, and also find the location and pixel value of good pixels around the bad pixels.

Parameters
[in]mimageMaskedImage to find the pixels from.
[in]maskPlanesList of mask planes to consider as bad pixels.
[in]bufferNumber of pixels to dilate the bad pixels by.
Returns
A pair of arrays, the first containing the bad pixels and the second containing the good pixels.
Note
The bad pixels array has shape (N, 3) where N is the number of bad pixels. The first column is the x coordinate, the second column is the y coordinate, and the third column is the pixel value. The good pixels array has shape (M, 3) where M is the number of good pixels and has the same format as the previous one.

Definition at line 43 of file CloughTocher2DInterpolatorUtils.cc.

45 {
46 auto bitMask = afw::image::Mask<>::getPlaneBitMask(maskPlanes);
47
48 auto badSpanSet = afw::geom::SpanSet::fromMask(
49 *mimage.getMask(), [bitMask](afw::image::MaskPixel pixel) { return bool(pixel & bitMask); });
50 ndarray::Array<float, 2, 2> badPixelArray = ndarray::allocate(badSpanSet->getArea(), 3);
51 badSpanSet->applyFunctor(
52 [](geom::Point2I pt, float &x, float &y, float &valueOut, float valueIn) {
53 x = pt.getX();
54 y = pt.getY();
55 valueOut = valueIn;
56 },
57 ndFlat(badPixelArray[ndarray::view()(0)].shallow()),
58 ndFlat(badPixelArray[ndarray::view()(1)].shallow()),
59 ndFlat(badPixelArray[ndarray::view()(2)].shallow()),
60 *mimage.getImage());
61
62 auto allSpanSet = badSpanSet->dilated(buffer, afw::geom::Stencil::BOX);
63 auto goodSpanSet = allSpanSet->intersectNot(*badSpanSet);
64 goodSpanSet = goodSpanSet->clippedTo(mimage.getBBox());
65
66 badSpanSet.reset();
67 allSpanSet.reset();
68
69 ndarray::Array<float, 2, 2> goodPixelArray = ndarray::allocate(goodSpanSet->getArea(), 3);
70 goodSpanSet->applyFunctor(
71 [](geom::Point2I pt, float &x, float &y, float &valueOut, float valueIn) {
72 x = pt.getX();
73 y = pt.getY();
74 valueOut = valueIn;
75 },
76 ndFlat(goodPixelArray[ndarray::view()(0)].shallow()),
77 ndFlat(goodPixelArray[ndarray::view()(1)].shallow()),
78 ndFlat(goodPixelArray[ndarray::view()(2)].shallow()),
79 *mimage.getImage());
80
81 goodSpanSet.reset();
82
83 return std::make_pair(badPixelArray, goodPixelArray);
84}
int y
Definition SpanSet.cc:48
static std::shared_ptr< geom::SpanSet > fromMask(image::Mask< T > const &mask, UnaryPredicate comparator=details::AnyBitSetFunctor< T >())
Create a SpanSet from a mask.
Definition SpanSet.h:644
static MaskPixelT getPlaneBitMask(const std::vector< std::string > &names)
Return the bitmask corresponding to a vector of plane names OR'd together.
Definition Mask.cc:376
T make_pair(T... args)
std::int32_t MaskPixel
default type for Masks and MaskedImage Masks
details::FlatNdGetter< T, inA, inB > ndFlat(ndarray::Array< T, inA, inB > const &array)
Marks a ndarray to be interpreted as a 1D vector when applying a functor from a SpanSet.

◆ updateArrayFromImage()

void lsst::meas::algorithms::CloughTocher2DInterpolatorUtils::updateArrayFromImage ( ndarray::Array< float, 2, 2 > const & pixelArray,
afw::image::Image< PixelT > const & image )
static

Update the values (third column) of the pixelArray from the image.

Parameters
[out]pixelArrayThe three-column array to update.
[in]imageThe image to update the pixel values from.
Note
The pixelArray is typically one of the arrays returned by findGoodPixelsAroundBadPixels.
See also
updateImageFromArray

Definition at line 86 of file CloughTocher2DInterpolatorUtils.cc.

87 {
88 afw::image::CheckIndices docheck(true);
89 auto x0 = image.getX0();
90 auto y0 = image.getY0();
91 for (auto row : pixelArray) {
92 int x = row[0] - x0;
93 int y = row[1] - y0;
94 row[2] = image(x, y, docheck);
95 }
96}
afw::table::Key< afw::table::Array< ImagePixelT > > image
int row
Definition CR.cc:145

◆ updateImageFromArray()

void lsst::meas::algorithms::CloughTocher2DInterpolatorUtils::updateImageFromArray ( afw::image::Image< PixelT > & image,
ndarray::Array< float const, 2, 2 > const & pixelArray )
static

Update the pixel values of the image from the pixelArray.

Parameters
[out]imageThe image to update.
[in]pixelArrayThe three-column array to update the pixel values from.
Note
The pixelArray is typically one of the arrays returned by findGoodPixelsAroundBadPixels.
See also
updateArrayFromImage

Definition at line 98 of file CloughTocher2DInterpolatorUtils.cc.

99 {
100 afw::image::CheckIndices docheck(true);
101 auto x0 = image.getX0();
102 auto y0 = image.getY0();
103 for (auto row : pixelArray) {
104 int x = row[0] - x0;
105 int y = row[1] - y0;
106 image(x, y, docheck) = row[2];
107 }
108}

The documentation for this class was generated from the following files: