Loading [MathJax]/extensions/tex2jax.js
LSST Applications g0fba68d861+330b683386,g1ec0fe41b4+3ea9d11450,g1fd858c14a+9be2b0f3b9,g2440f9efcc+8c5ae1fdc5,g33b6eb7922+23bc9e47ac,g35bb328faa+8c5ae1fdc5,g4a4af6cd76+d25431c27e,g4d2262a081+da6e3a53c4,g53246c7159+8c5ae1fdc5,g55585698de+be1c65ba71,g56a49b3a55+92a7603e7a,g60b5630c4e+be1c65ba71,g67b6fd64d1+3fc8cb0b9e,g78460c75b0+7e33a9eb6d,g786e29fd12+668abc6043,g8352419a5c+8c5ae1fdc5,g8852436030+60e38ee5ff,g89139ef638+3fc8cb0b9e,g8de97aba08+a886b35a30,g94187f82dc+be1c65ba71,g989de1cb63+3fc8cb0b9e,g9d31334357+be1c65ba71,g9f33ca652e+69d6bbdd4b,gabe3b4be73+8856018cbb,gabf8522325+977d9fabaf,gb1101e3267+b0077987df,gb89ab40317+3fc8cb0b9e,gc91f06edcd+2e2ca305f6,gcf25f946ba+60e38ee5ff,gd6cbbdb0b4+1cc2750d2e,gdb1c4ca869+be65c9c1d7,gde0f65d7ad+05f0c6b5f8,ge278dab8ac+6b863515ed,ge410e46f29+3fc8cb0b9e,gf35d7ec915+97dd712d81,gf5e32f922b+8c5ae1fdc5,gf618743f1b+3164b09b60,gf67bdafdda+3fc8cb0b9e,w.2025.18
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
KernelSumVisitor.cc
Go to the documentation of this file.
1// -*- lsst-c++ -*-
11#include <limits>
12
13#include "lsst/afw/math.h"
14#include "lsst/log/Log.h"
17
20
21namespace afwMath = lsst::afw::math;
22namespace dafBase = lsst::daf::base;
23namespace pexExcept = lsst::pex::exceptions;
24
25namespace lsst {
26namespace ip {
27namespace diffim {
28namespace detail {
29
64 template<typename PixelT>
67 ) :
69 _mode(AGGREGATE),
70 _kSums(std::vector<double>()),
71 _kSumMean(0.),
72 _kSumStd(0.),
73 _dkSumMax(0.),
74 _kSumNpts(0),
75 _nRejected(0),
76 _ps(ps.deepCopy())
77 {};
78
79 template<typename PixelT>
81 _kSums.clear();
82 _kSumMean = 0.;
83 _kSumStd = 0.;
84 _dkSumMax = 0.;
85 _kSumNpts = 0;
86 _nRejected = 0;
87 }
88
89 template<typename PixelT>
91 *candidate) {
92
93 KernelCandidate<PixelT> *kCandidate = dynamic_cast<KernelCandidate<PixelT> *>(candidate);
94 if (kCandidate == NULL) {
95 throw LSST_EXCEPT(pexExcept::LogicError,
96 "Failed to cast SpatialCellCandidate to KernelCandidate");
97 }
98 LOGL_DEBUG("TRACE5.ip.diffim.KernelSumVisitor.processCandidate",
99 "Processing candidate %d, mode %d", kCandidate->getId(), _mode);
100
101 /* Grab all kernel sums and look for outliers */
102 if (_mode == AGGREGATE) {
103 _kSums.push_back(kCandidate->getKernelSolution(KernelCandidate<PixelT>::ORIG)->getKsum());
104 }
105 else if (_mode == REJECT) {
106 if (_ps->getAsBool("kernelSumClipping")) {
107 double kSum =
108 kCandidate->getKernelSolution(KernelCandidate<PixelT>::ORIG)->getKsum();
109
110 if (fabs(kSum - _kSumMean) > _dkSumMax) {
112 LOGL_DEBUG("TRACE3.ip.diffim.KernelSumVisitor.processCandidate",
113 "Rejecting candidate %d; bad source kernel sum : (%.2f)",
114 kCandidate->getId(),
115 kSum);
116 _nRejected += 1;
117 }
118 }
119 else {
120 LOGL_DEBUG("TRACE5.ip.diffim.KernelSumVisitor.processCandidate",
121 "Sigma clipping not enabled");
122 }
123 }
124 }
125
126 template<typename PixelT>
128 if (_kSums.size() == 0) {
129 throw LSST_EXCEPT(pexExcept::RuntimeError,
130 "Unable to determine kernel sum; 0 candidates");
131 }
132 else if (_kSums.size() == 1) {
133 LOGL_DEBUG("TRACE1.ip.diffim.KernelSumVisitor.processKsumDistribution",
134 "WARNING: only 1 kernel candidate");
135
136 _kSumMean = _kSums[0];
137 _kSumStd = 0.0;
138 _kSumNpts = 1;
139 }
140 else {
141 try {
146 _kSumMean = stats.getValue(afwMath::MEANCLIP);
147 _kSumStd = stats.getValue(afwMath::STDEVCLIP);
148 _kSumNpts = static_cast<int>(stats.getValue(afwMath::NPOINT));
149 } catch (pexExcept::Exception &e) {
150 LSST_EXCEPT_ADD(e, "Unable to calculate kernel sum statistics");
151 throw e;
152 }
153 if (std::isnan(_kSumMean)) {
154 throw LSST_EXCEPT(pexExcept::RuntimeError,
155 str(boost::format("Mean kernel sum returns NaN (%d points)")
156 % _kSumNpts));
157 }
158 if (std::isnan(_kSumStd)) {
159 throw LSST_EXCEPT(pexExcept::RuntimeError,
160 str(boost::format("Kernel sum stdev returns NaN (%d points)")
161 % _kSumNpts));
162 }
163 }
164 _dkSumMax = _ps->getAsDouble("maxKsumSigma") * _kSumStd;
165 LOGL_DEBUG("TRACE1.ip.diffim.KernelSumVisitor.processCandidate",
166 "Kernel Sum Distribution : %.3f +/- %.3f (%d points)",
167 _kSumMean, _kSumStd, _kSumNpts);
168 }
169
170 typedef float PixelT;
171
172 template class KernelSumVisitor<PixelT>;
173
176
177}}}} // end of namespace lsst::ip::diffim::detail
#define LSST_EXCEPT_ADD(e, m)
Add the current location and a message to an existing exception before rethrowing it.
Definition Exception.h:54
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
Class used by SpatialModelCell for spatial Kernel fitting.
Declaration of KernelSumVisitor.
LSST DM logging module built on log4cxx.
#define LOGL_DEBUG(logger, message...)
Log a debug-level message using a varargs/printf style interface.
Definition Log.h:515
Base class for candidate objects in a SpatialCell.
Definition SpatialCell.h:70
int getId() const
Return the candidate's unique ID.
void setStatus(Status status)
Set the candidate's status.
A class to evaluate image statistics.
Definition Statistics.h:222
double getValue(Property const prop=NOTHING) const
Return the value of the desired property (if specified in the constructor)
Class for storing generic metadata.
Definition PropertySet.h:67
Class stored in SpatialCells for spatial Kernel fitting.
std::shared_ptr< StaticKernelSolution< PixelT > > getKernelSolution(CandidateSwitch cand) const
A class to accumulate kernel sums across SpatialCells.
KernelSumVisitor(lsst::daf::base::PropertySet const &ps)
void processCandidate(lsst::afw::math::SpatialCellCandidate *candidate)
T isnan(T... args)
Statistics makeStatistics(lsst::afw::image::Image< Pixel > const &img, lsst::afw::image::Mask< image::MaskPixel > const &msk, int const flags, StatisticsControl const &sctrl=StatisticsControl())
Handle a watered-down front-end to the constructor (no variance)
Definition Statistics.h:361
@ STDEVCLIP
estimate sample N-sigma clipped stdev (N set in StatisticsControl, default=3)
Definition Statistics.h:63
@ MEANCLIP
estimate sample N-sigma clipped mean (N set in StatisticsControl, default=3)
Definition Statistics.h:62
@ NPOINT
number of sample points
Definition Statistics.h:56
template std::shared_ptr< KernelSumVisitor< PixelT > > makeKernelSumVisitor< PixelT >(lsst::daf::base::PropertySet const &)
STL namespace.