|
lsst.afw g3a5ebb7d8a+28b83bf6a5
|
#include <algorithm>#include <cstdint>#include <sstream>#include <vector>#include "lsst/pex/exceptions.h"#include "lsst/log/Log.h"#include "lsst/geom.h"#include "lsst/afw/image/MaskedImage.h"#include "lsst/afw/math/ConvolveImage.h"#include "lsst/afw/math/Kernel.h"#include "lsst/afw/math/detail/Convolve.h"Go to the source code of this file.
Namespaces | |
| namespace | lsst |
| namespace | lsst::afw |
| namespace | lsst::afw::math |
| namespace | lsst::afw::math::detail |
Functions | |
| template<typename OutImageT, typename InImageT> | |
| void | lsst::afw::math::detail::basicConvolve (OutImageT &convolvedImage, InImageT const &inImage, lsst::afw::math::Kernel const &kernel, lsst::afw::math::ConvolutionControl const &convolutionControl) |
| Low-level convolution function that does not set edge pixels. | |
| template<typename OutImageT, typename InImageT> | |
| void | lsst::afw::math::detail::basicConvolve (OutImageT &convolvedImage, InImageT const &inImage, lsst::afw::math::DeltaFunctionKernel const &kernel, lsst::afw::math::ConvolutionControl const &convolutionControl) |
| A version of basicConvolve that should be used when convolving delta function kernels. | |
| template<typename OutImageT, typename InImageT> | |
| void | lsst::afw::math::detail::basicConvolve (OutImageT &convolvedImage, InImageT const &inImage, lsst::afw::math::LinearCombinationKernel const &kernel, lsst::afw::math::ConvolutionControl const &convolutionControl) |
| A version of basicConvolve that should be used when convolving a LinearCombinationKernel. | |
| template<typename OutImageT, typename InImageT> | |
| void | lsst::afw::math::detail::basicConvolve (OutImageT &convolvedImage, InImageT const &inImage, lsst::afw::math::SeparableKernel const &kernel, lsst::afw::math::ConvolutionControl const &convolutionControl) |
| A version of basicConvolve that should be used when convolving separable kernels. | |
| template<typename OutImageT, typename InImageT> | |
| void | lsst::afw::math::detail::convolveWithBruteForce (OutImageT &convolvedImage, InImageT const &inImage, lsst::afw::math::Kernel const &kernel, lsst::afw::math::ConvolutionControl const &convolutionControl) |
| Convolve an Image or MaskedImage with a Kernel by computing the kernel image at every point. | |