Loading [MathJax]/extensions/tex2jax.js
LSST Applications g04a91732dc+40afcc7e13,g0fba68d861+2cf5f380f6,g1fd858c14a+d4497073b1,g208c678f98+2d879463ba,g2c84ff76c0+12036dbf49,g35bb328faa+fcb1d3bbc8,g4d2262a081+2eb0d036a3,g4d39ba7253+a49fd2d81b,g4e0f332c67+c58e4b632d,g53246c7159+fcb1d3bbc8,g60b5630c4e+a49fd2d81b,g67b6fd64d1+dfd268ab64,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g8852436030+e37c0d7b52,g89139ef638+dfd268ab64,g8d6b6b353c+a49fd2d81b,g8ec4aff861+ac98094cfc,g9125e01d80+fcb1d3bbc8,g989de1cb63+dfd268ab64,g9f33ca652e+f1cbaf6525,ga2b97cdc51+a49fd2d81b,gabe3b4be73+1e0a283bba,gb04aad79e7+7b3e21ef87,gb1101e3267+3ea6b9adb9,gb58c049af0+f03b321e39,gb89ab40317+dfd268ab64,gb90eeb9370+95a6a83b9d,gcf25f946ba+e37c0d7b52,gd315a588df+e0e29fc712,gd6cbbdb0b4+75aa4b1db4,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+33f4a7fb92,ge278dab8ac+c61fbefdff,ge410e46f29+dfd268ab64,ge82c20c137+e12a08b75a,gf67bdafdda+dfd268ab64,w.2025.11
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
AssessSpatialKernelVisitor.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
11
12#ifndef LSST_IP_DIFFIM_ASSESSSPATIALKERNELVISITOR_H
13#define LSST_IP_DIFFIM_ASSESSSPATIALKERNELVISITOR_H
14
15#include "lsst/afw/math.h"
16#include "lsst/afw/image.h"
17#include "lsst/ip/diffim.h"
19
20namespace lsst {
21namespace ip {
22namespace diffim {
23namespace detail {
24
25 template<typename PixelT>
27 typedef lsst::afw::image::MaskedImage<PixelT> MaskedImageT;
28 public:
30
35 );
37
38 void reset() {_nGood = 0; _nRejected = 0; _nProcessed = 0;}
39
40 int getNGood() {return _nGood;}
41 int getNRejected() {return _nRejected;}
42 int getNProcessed() {return _nProcessed;}
44
45 private:
50 int _nGood;
51 int _nRejected;
52 int _nProcessed;
53
54 bool _useCoreStats;
55 int _coreRadius;
56 };
57
58 template<typename PixelT>
70
71}}}} // end of namespace lsst::ip::diffim::detail
72
73#endif
A class to manipulate images, masks, and variance as a single object.
Definition MaskedImage.h:74
std::shared_ptr< lsst::afw::math::Function2< double > > SpatialFunctionPtr
Definition Kernel.h:113
Base class for candidate objects in a SpatialCell.
Definition SpatialCell.h:70
Class for storing generic metadata.
Definition PropertySet.h:67
std::shared_ptr< PropertySet > Ptr
Definition PropertySet.h:70
Class to calculate difference image statistics.
Asseses the quality of a candidate given a spatial kernel and background model.
AssessSpatialKernelVisitor(std::shared_ptr< lsst::afw::math::LinearCombinationKernel > spatialKernel, lsst::afw::math::Kernel::SpatialFunctionPtr spatialBackground, lsst::daf::base::PropertySet const &ps)
std::shared_ptr< AssessSpatialKernelVisitor< PixelT > > Ptr
void processCandidate(lsst::afw::math::SpatialCellCandidate *candidate)
An include file to include the header files for lsst::ip::diffim.
std::shared_ptr< AssessSpatialKernelVisitor< PixelT > > makeAssessSpatialKernelVisitor(std::shared_ptr< lsst::afw::math::LinearCombinationKernel > spatialKernel, lsst::afw::math::Kernel::SpatialFunctionPtr spatialBackground, lsst::daf::base::PropertySet const &ps)