LSST Applications  21.0.0+04719a4bac,21.0.0-1-ga51b5d4+f5e6047307,21.0.0-11-g2b59f77+a9c1acf22d,21.0.0-11-ga42c5b2+86977b0b17,21.0.0-12-gf4ce030+76814010d2,21.0.0-13-g1721dae+760e7a6536,21.0.0-13-g3a573fe+768d78a30a,21.0.0-15-g5a7caf0+f21cbc5713,21.0.0-16-g0fb55c1+b60e2d390c,21.0.0-19-g4cded4ca+71a93a33c0,21.0.0-2-g103fe59+bb20972958,21.0.0-2-g45278ab+04719a4bac,21.0.0-2-g5242d73+3ad5d60fb1,21.0.0-2-g7f82c8f+8babb168e8,21.0.0-2-g8f08a60+06509c8b61,21.0.0-2-g8faa9b5+616205b9df,21.0.0-2-ga326454+8babb168e8,21.0.0-2-gde069b7+5e4aea9c2f,21.0.0-2-gecfae73+1d3a86e577,21.0.0-2-gfc62afb+3ad5d60fb1,21.0.0-25-g1d57be3cd+e73869a214,21.0.0-3-g357aad2+ed88757d29,21.0.0-3-g4a4ce7f+3ad5d60fb1,21.0.0-3-g4be5c26+3ad5d60fb1,21.0.0-3-g65f322c+e0b24896a3,21.0.0-3-g7d9da8d+616205b9df,21.0.0-3-ge02ed75+a9c1acf22d,21.0.0-4-g591bb35+a9c1acf22d,21.0.0-4-g65b4814+b60e2d390c,21.0.0-4-gccdca77+0de219a2bc,21.0.0-4-ge8a399c+6c55c39e83,21.0.0-5-gd00fb1e+05fce91b99,21.0.0-6-gc675373+3ad5d60fb1,21.0.0-64-g1122c245+4fb2b8f86e,21.0.0-7-g04766d7+cd19d05db2,21.0.0-7-gdf92d54+04719a4bac,21.0.0-8-g5674e7b+d1bd76f71f,master-gac4afde19b+a9c1acf22d,w.2021.13
LSST Data Management Base Package
Convolve.h
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 
3 /*
4  * LSST Data Management System
5  * Copyright 2008, 2009, 2010 LSST Corporation.
6  *
7  * This product includes software developed by the
8  * LSST Project (http://www.lsst.org/).
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the LSST License Statement and
21  * the GNU General Public License along with this program. If not,
22  * see <http://www.lsstcorp.org/LegalNotices/>.
23  */
24 
25 #ifndef LSST_AFW_MATH_DETAIL_CONVOLVE_H
26 #define LSST_AFW_MATH_DETAIL_CONVOLVE_H
27 /*
28  * Convolution support
29  */
30 #include <memory>
31 #include <sstream>
32 
33 #include "lsst/pex/exceptions.h"
34 #include "lsst/afw/geom.h"
35 #include "lsst/afw/image/Image.h"
37 #include "lsst/afw/math/Kernel.h"
39 
40 #define IS_INSTANCE(A, B) (dynamic_cast<B const*>(&(A)) != NULL)
41 
42 namespace lsst {
43 namespace afw {
44 namespace math {
45 
46 namespace detail {
67 template <typename OutImageT, typename InImageT>
68 void basicConvolve(OutImageT& convolvedImage, InImageT const& inImage, lsst::afw::math::Kernel const& kernel,
69  lsst::afw::math::ConvolutionControl const& convolutionControl);
70 
79 template <typename OutImageT, typename InImageT>
80 void basicConvolve(OutImageT& convolvedImage, InImageT const& inImage,
82  lsst::afw::math::ConvolutionControl const& convolutionControl);
83 
105 template <typename OutImageT, typename InImageT>
106 void basicConvolve(OutImageT& convolvedImage, InImageT const& inImage,
108  lsst::afw::math::ConvolutionControl const& convolutionControl);
109 
118 template <typename OutImageT, typename InImageT>
119 void basicConvolve(OutImageT& convolvedImage, InImageT const& inImage,
120  lsst::afw::math::SeparableKernel const& kernel,
121  lsst::afw::math::ConvolutionControl const& convolutionControl);
122 
146 template <typename OutImageT, typename InImageT>
147 void convolveWithBruteForce(OutImageT& convolvedImage, InImageT const& inImage,
148  lsst::afw::math::Kernel const& kernel,
149  lsst::afw::math::ConvolutionControl const& convolutionControl);
150 
151 // I would prefer this to be nested in KernelImagesForRegion but SWIG doesn't support that
153 
173 public:
178 
193 
206  lsst::geom::Point2I const& xy0, bool doNormalize);
228  lsst::geom::Point2I const& xy0, bool doNormalize, ImagePtr bottomLeftImagePtr,
229  ImagePtr bottomRightImagePtr, ImagePtr topLeftImagePtr, ImagePtr topRightImagePtr);
230 
234  lsst::geom::Box2I getBBox() const { return _bbox; };
238  lsst::geom::Point2I getXY0() const { return _xy0; };
242  bool getDoNormalize() const { return _doNormalize; };
250  ImagePtr getImage(Location location) const;
254  KernelConstPtr getKernel() const { return _kernelPtr; };
273  bool computeNextRow(RowOfKernelImagesForRegion& regionRow) const;
274 
278  static int getMinInterpolationSize() { return _MinInterpolationSize; };
279 
280 private:
281  typedef std::vector<Location> LocationList;
282 
288  void _computeImage(Location location) const;
289  inline void _insertImage(Location location, ImagePtr imagePtr) const;
303  void _moveUp(bool isFirst, int newHeight);
304 
305  // static helper functions
306  static inline int _computeNextSubregionLength(int length, int nDivisions);
317  static std::vector<int> _computeSubregionLengths(int length, int nDivisions);
318 
319  // member variables
320  KernelConstPtr _kernelPtr;
321  lsst::geom::Box2I _bbox;
322  lsst::geom::Point2I _xy0;
323  bool _doNormalize;
324  mutable std::vector<ImagePtr> _imagePtrList;
325 
326  static int const _MinInterpolationSize;
327 };
328 
335 public:
337  typedef RegionList::iterator Iterator;
338  typedef RegionList::const_iterator ConstIterator;
339 
346  RowOfKernelImagesForRegion(int nx, int ny);
350  RegionList::const_iterator begin() const { return _regionList.begin(); };
354  RegionList::const_iterator end() const { return _regionList.end(); };
358  RegionList::iterator begin() { return _regionList.begin(); };
362  RegionList::iterator end() { return _regionList.end(); };
370  std::shared_ptr<KernelImagesForRegion> back() { return _regionList.back(); };
371  int getNX() const { return _nx; };
372  int getNY() const { return _ny; };
373  int getYInd() const { return _yInd; };
379  std::shared_ptr<KernelImagesForRegion const> getRegion(int ind) const { return _regionList.at(ind); };
380  bool hasData() const { return static_cast<bool>(_regionList[0]); };
381  bool isLastRow() const { return _yInd + 1 >= _ny; };
382  int incrYInd() { return ++_yInd; };
383 
384 private:
385  int _nx;
386  int _ny;
387  int _yInd;
388  RegionList _regionList;
389 };
390 
410 template <typename OutImageT, typename InImageT>
411 void convolveWithInterpolation(OutImageT& outImage, InImageT const& inImage,
412  lsst::afw::math::Kernel const& kernel,
413  ConvolutionControl const& convolutionControl);
414 
419 public:
434 };
435 
448 template <typename OutImageT, typename InImageT>
449 void convolveRegionWithInterpolation(OutImageT& outImage, InImageT const& inImage,
450  KernelImagesForRegion const& region,
452 
453 /*
454  * Define inline functions
455  */
456 
464 inline int KernelImagesForRegion::_computeNextSubregionLength(
465  int length,
466  int nDivisions)
467 {
468  return static_cast<int>(
469  std::floor(0.5 + (static_cast<double>(length) / static_cast<double>(nDivisions))));
470 }
471 
478 inline void KernelImagesForRegion::_insertImage(Location location,
479  ImagePtr imagePtr)
480  const {
481  if (imagePtr) {
482  if (_kernelPtr->getDimensions() != imagePtr->getDimensions()) {
484  os << "image dimensions = ( " << imagePtr->getWidth() << ", " << imagePtr->getHeight() << ") != ("
485  << _kernelPtr->getWidth() << ", " << _kernelPtr->getHeight() << ") = kernel dimensions";
487  }
488  _imagePtrList[location] = imagePtr;
489  }
490 }
491 } // namespace detail
492 } // namespace math
493 } // namespace afw
494 } // namespace lsst
495 
496 #endif // !defined(LSST_AFW_MATH_DETAIL_CONVOLVE_H)
AmpInfoBoxKey bbox
Definition: Amplifier.cc:117
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
afw::table::PointKey< int > dimensions
Definition: GaussianPsf.cc:49
std::ostream * os
Definition: Schema.cc:746
T at(T... args)
T back(T... args)
T begin(T... args)
Parameters to control convolution.
Definition: ConvolveImage.h:50
A kernel that has only one non-zero pixel (of value 1)
Definition: Kernel.h:644
Kernels are used for convolution with MaskedImages and (eventually) Images.
Definition: Kernel.h:111
lsst::geom::Extent2I const getDimensions() const
Return the Kernel's dimensions (width, height)
Definition: Kernel.h:213
int getHeight() const
Return the Kernel's height.
Definition: Kernel.h:230
int getWidth() const
Return the Kernel's width.
Definition: Kernel.h:225
A kernel that is a linear combination of fixed basis kernels.
Definition: Kernel.h:705
A kernel described by a pair of functions: func(x, y) = colFunc(x) * rowFunc(y)
Definition: Kernel.h:861
A collection of Kernel images for special locations on a rectangular region of an image.
Definition: Convolve.h:172
KernelConstPtr getKernel() const
Get the kernel (as a shared pointer to const)
Definition: Convolve.h:254
Location
locations of various points in the region
Definition: Convolve.h:192
KernelImagesForRegion(KernelConstPtr kernelPtr, lsst::geom::Box2I const &bbox, lsst::geom::Point2I const &xy0, bool doNormalize)
Construct a KernelImagesForRegion.
bool computeNextRow(RowOfKernelImagesForRegion &regionRow) const
Compute next row of subregions.
lsst::geom::Point2I getPixelIndex(Location location) const
Compute pixel index of a given location, relative to the parent image (thus offset by bottom left cor...
ImagePtr getImage(Location location) const
Return the image and sum at the specified location.
lsst::afw::image::Image< lsst::afw::math::Kernel::Pixel > Image
Definition: Convolve.h:175
bool getDoNormalize() const
Get the doNormalize parameter.
Definition: Convolve.h:242
std::shared_ptr< lsst::afw::math::Kernel const > KernelConstPtr
Definition: Convolve.h:174
lsst::geom::Box2I getBBox() const
Get the bounding box for the region.
Definition: Convolve.h:234
lsst::geom::Point2I getXY0() const
Get xy0 of the image.
Definition: Convolve.h:238
std::shared_ptr< Image const > ImageConstPtr
Definition: Convolve.h:177
static int getMinInterpolationSize()
Get the minInterpolationSize class constant.
Definition: Convolve.h:278
RegionList::iterator end()
Return the end iterator for the list.
Definition: Convolve.h:362
RowOfKernelImagesForRegion(int nx, int ny)
Construct a RowOfKernelImagesForRegion.
std::shared_ptr< KernelImagesForRegion > front()
Return the first region in the list.
Definition: Convolve.h:366
std::shared_ptr< KernelImagesForRegion > back()
Return the last region in the list.
Definition: Convolve.h:370
RegionList::const_iterator begin() const
Return the begin iterator for the list.
Definition: Convolve.h:350
std::shared_ptr< KernelImagesForRegion const > getRegion(int ind) const
get the specified region (range-checked)
Definition: Convolve.h:379
RegionList::iterator begin()
Return the begin iterator for the list.
Definition: Convolve.h:358
std::vector< std::shared_ptr< KernelImagesForRegion > > RegionList
Definition: Convolve.h:336
RegionList::const_iterator end() const
Return the end iterator for the list.
Definition: Convolve.h:354
An integer coordinate rectangle.
Definition: Box.h:55
Reports invalid arguments.
Definition: Runtime.h:66
T end(T... args)
T floor(T... args)
T front(T... args)
class[[deprecated("Removed with no replacement (but see lsst::afw::image::TransmissionCurve). Will be " "removed after v22.")]] FilterProperty final
Describe the properties of a Filter (e.g.
Definition: Filter.h:53
void convolveRegionWithInterpolation(OutImageT &outImage, InImageT const &inImage, KernelImagesForRegion const &region, ConvolveWithInterpolationWorkingImages &workingImages)
Convolve a region of an Image or MaskedImage with a spatially varying Kernel using interpolation.
void 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.
void 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.
void 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.
A base class for image defects.
kernel images used by convolveRegionWithInterpolation
Definition: Convolve.h:418
lsst::afw::image::Image< lsst::afw::math::Kernel::Pixel > Image
Definition: Convolve.h:420
ConvolveWithInterpolationWorkingImages(lsst::geom::Extent2I const &dimensions)
Definition: Convolve.h:421