LSSTApplications
18.1.0
LSSTDataManagementBasePackage
|
#include <algorithm>
#include <cmath>
#include <cstdint>
#include <sstream>
#include <vector>
#include <iostream>
#include "lsst/pex/exceptions.h"
#include "lsst/log/Log.h"
#include "lsst/geom.h"
#include "lsst/afw/image/MaskedImage.h"
#include "lsst/afw/math/Kernel.h"
#include "lsst/afw/math/detail/Convolve.h"
Go to the source code of this file.
Namespaces | |
lsst | |
A base class for image defects. | |
lsst::afw | |
lsst::afw::math | |
lsst::afw::math::detail | |
Functions | |
template<typename OutImageT , typename InImageT > | |
void | lsst::afw::math::detail::convolveWithInterpolation (OutImageT &outImage, InImageT const &inImage, lsst::afw::math::Kernel const &kernel, ConvolutionControl const &convolutionControl) |
Convolve an Image or MaskedImage with a spatially varying Kernel using linear interpolation. More... | |
template<typename OutImageT , typename InImageT > | |
void | lsst::afw::math::detail::convolveRegionWithInterpolation (OutImageT &outImage, InImageT const &inImage, KernelImagesForRegion const ®ion, ConvolveWithInterpolationWorkingImages &workingImages) |
Convolve a region of an Image or MaskedImage with a spatially varying Kernel using interpolation. More... | |