41 namespace algorithms {
47 template <
typename PixelT>
48 int PsfCandidate<PixelT>::_border = 0;
49 template <
typename PixelT>
50 int PsfCandidate<PixelT>::_defaultWidth = 21;
51 template <
typename PixelT>
52 float PsfCandidate<PixelT>::_pixelThreshold = 0.0;
53 template <
typename PixelT>
54 bool PsfCandidate<PixelT>::_doMaskBlends =
true;
59 struct noop :
public afw::image::pixelOp1<T> {
60 T operator()(
T x)
const {
return x; }
64 struct andMask :
public afw::image::pixelOp1<T> {
65 andMask(
T mask) : _mask(mask) {}
66 T operator()(
T x)
const {
return (x & _mask); }
73 andMask<T> makeAndMask(
T val) {
74 return andMask<T>(
val);
80 template <
typename LhsT,
typename RhsT>
82 afw::image::Mask<RhsT>
const& rhs,
83 afw::image::pixelOp1<RhsT>
const& func = noop<RhsT>()
86 std::make_shared<afw::image::Image<LhsT>>(rhs.getDimensions());
87 lhs->setXY0(rhs.getXY0());
89 for (
int y = 0;
y != lhs->getHeight(); ++
y) {
93 lhsEnd = lhs->row_end(
y);
94 lhsPtr != lhsEnd; ++rhsPtr, ++lhsPtr) {
95 *lhsPtr = func(*rhsPtr);
103 double distanceSquared(
double x,
double y, afw::detection::PeakRecord
const&
peak) {
111 template <
typename MaskT>
112 class BlendedFunctor {
114 BlendedFunctor(afw::detection::PeakRecord
const& central,
119 : _central(central), _peaks(peaks), _turnOff(~turnOff), _turnOn(turnOn) {}
123 int x = point.getX();
124 int y = point.getY();
125 double const central = distanceSquared(x, y, _central);
128 double const dist2 = distanceSquared(x, y, *
iter);
129 if (dist2 < central) {
137 afw::detection::PeakRecord
const& _central;
163 template <
typename PixelT>
164 PTR(afw::image::MaskedImage<PixelT>)
165 PsfCandidate<PixelT>::extractImage(
unsigned int width,
170 geom::Point2I const llc(cen[0] - width / 2 - _parentExposure->getX0(),
171 cen[1] - height / 2 - _parentExposure->getY0());
177 MaskedImageT mimg = _parentExposure->getMaskedImage();
179 }
catch (pex::exceptions::LengthError& e) {
188 MaskedImageT::Mask::getPlaneBitMask(
"INTRP");
192 if (getMaskBlends()) {
195 PeakCatalog
const& peaks = foot->getPeaks();
196 if (peaks.size() > 1) {
199 PTR(afw::detection::PeakRecord) central;
200 for (PeakCatalog::const_iterator
iter = peaks.begin(),
end = peaks.end();
iter !=
end; ++
iter) {
201 double const dist2 = distanceSquared(getXCenter(), getYCenter(), *
iter);
209 PeakCatalog others(peaks.getTable());
210 others.reserve(peaks.size() - 1);
211 for (PeakCatalog::const_iterator
iter = peaks.begin(),
end = peaks.end();
iter !=
end; ++
iter) {
213 if (central !=
ptr) {
214 others.push_back(
ptr);
218 BlendedFunctor<typename MaskedImageT::Mask::Pixel> functor(*central, others, detected, intrp);
219 foot->getSpans()->clippedTo(
image->getBBox())->applyFunctor(functor, *
image->getMask());
229 PTR(afw::image::Image<int>) mim = makeImageFromMask<int>(*
image->getMask(), makeAndMask(detected));
230 PTR(afw::detection::FootprintSet)
231 fs = std::make_shared<afw::detection::FootprintSet>(*mim, afw::detection::Threshold(1));
232 CONST_PTR(FootprintList) feet = fs->getFootprints();
234 if (feet->size() > 1) {
239 for (FootprintList::const_iterator fiter = feet->begin(); fiter != feet->end(); ++fiter) {
241 if (foot->contains(cen)) {
246 auto bigSpan = foot->getSpans()->dilated(ngrow)->clippedTo(
image->getBBox());
247 bigSpan->clearMask(*
image->getMask(), detected);
248 bigSpan->setMask(*
image->getMask(), intrp);
253 if (_pixelThreshold > 0.0) {
255 fpSet = std::make_shared<afw::detection::FootprintSet>(
257 for (FootprintList::const_iterator fpIter = fpSet->getFootprints()->begin();
258 fpIter != fpSet->getFootprints()->end(); ++fpIter) {
260 if (!fp->contains(cen)) {
261 fp->getSpans()->clearMask(*image->getMask(), detected);
262 fp->getSpans()->setMask(*image->getMask(), intrp);
275 template <
typename PixelT>
276 CONST_PTR(afw::image::MaskedImage<PixelT>)
278 if (!_image || (width != _image->getWidth() || height != _image->getHeight())) {
279 _image = extractImage(width, height);
289 template <
typename PixelT>
292 int const width = getWidth() == 0 ? _defaultWidth : getWidth();
293 int const height = getHeight() == 0 ? _defaultWidth : getHeight();
294 return getMaskedImage(width, height);
297 template <
typename PixelT>
302 template <
typename PixelT>
307 template <
typename PixelT>
309 _pixelThreshold = threshold;
312 template <
typename PixelT>
314 return _pixelThreshold;
317 template <
typename PixelT>
319 _doMaskBlends = doMaskBlends;
322 template <
typename PixelT>
324 return _doMaskBlends;
332 template <
typename PixelT>
337 unsigned int const width = getWidth() == 0 ? _defaultWidth : getWidth();
338 unsigned int const height = getHeight() == 0 ? _defaultWidth : getHeight();
339 if (_offsetImage && static_cast<unsigned int>(_offsetImage->getWidth()) == width + 2 * buffer &&
340 static_cast<unsigned int>(_offsetImage->getHeight()) == height + 2 * buffer) {
344 PTR(
MaskedImageT) image = extractImage(width + 2 * buffer, height + 2 * buffer);
346 double const xcen = getXCenter(), ycen = getYCenter();
static void setMaskBlends(bool doMaskBlends)
Set whether blends are masked.
#define CONST_PTR(...)
A shared pointer to a const object.
float Pixel
Typedefs to be used for pixel values.
int positionToIndex(double pos)
Convert image position to nearest integer index.
_const_view_t::x_iterator const_x_iterator
A const iterator for traversing the pixels in a row.
_view_t::x_iterator x_iterator
An iterator for traversing the pixels in a row.
static float getPixelThreshold()
Get threshold for rejecting pixels unconnected with the central footprint.
static void setBorderWidth(int border)
Set the number of pixels to ignore around the candidate image's edge.
A base class for image defects.
afw::table::CatalogT< PeakRecord > PeakCatalog
Class used by SpatialCell for spatial PSF fittig.
static void setPixelThreshold(float threshold)
Set threshold for rejecting pixels unconnected with the central footprint.
A class to manipulate images, masks, and variance as a single object.
static int getBorderWidth()
Return the number of pixels being ignored around the candidate image's edge.
std::int32_t MaskPixel
default type for Masks and MaskedImage Masks
CatalogIterator< typename Internal::const_iterator > const_iterator
std::shared_ptr< ImageT > offsetImage(ImageT const &image, float dx, float dy, std::string const &algorithmName="lanczos5", unsigned int buffer=0)
Return an image offset by (dx, dy) using the specified algorithm.
lsst::afw::detection::Footprint Footprint
Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects...
Use number of sigma given per-pixel s.d.
static bool getMaskBlends()
Get whether blends are masked.
#define LSST_EXCEPT_ADD(e, m)
Add the current location and a message to an existing exception before rethrowing it...
An integer coordinate rectangle.
Class stored in SpatialCells for spatial Psf fitting.