Skip to content

Commit

Permalink
Remove references to examples from C++ files
Browse files Browse the repository at this point in the history
  • Loading branch information
parejkoj committed Jan 5, 2023
1 parent 5814938 commit 54aa0f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions include/lsst/afw/math/ConvolveImage.h
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,6 @@ inline typename OutImageT::SinglePixel convolveAtAPoint(
* of the output. Optimization of convolution for different types of Kernel are handled by different
* specializations of basicConvolve().
*
* afw/examples offers programs that time convolution including timeConvolve and timeSpatiallyVaryingConvolve.
*
* @param[out] convolvedImage convolved %image; must be the same size as inImage
* @param[in] inImage %image to convolve
* @param[in] kernel convolution kernel
Expand Down Expand Up @@ -261,8 +259,8 @@ inline typename OutImageT::SinglePixel convolveAtAPoint(
image::Image<Kernel::Pixel>::const_xy_locator kernelLocator, int kWidth, int kHeight) {
typename OutImageT::SinglePixel outValue = 0;
for (int kRow = 0; kRow != kHeight; ++kRow) {
for (image::Image<Kernel::Pixel>::const_xy_locator
kEnd = kernelLocator + image::detail::difference_type(kWidth, 0);
for (image::Image<Kernel::Pixel>::const_xy_locator kEnd =
kernelLocator + image::detail::difference_type(kWidth, 0);
kernelLocator != kEnd; ++inImageLocator.x(), ++kernelLocator.x()) {
typename Kernel::Pixel const kVal = kernelLocator[0];
if (kVal != 0) {
Expand Down
6 changes: 2 additions & 4 deletions include/lsst/afw/math/FunctionLibrary.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ namespace math {
*
* f(x) = 1 if x == xo, 0 otherwise.
*
* For use as a kernel function be sure to handle the offset for row and column center;
* see examples/deltaFunctionKernel for an example.
* For use as a kernel function be sure to handle the offset for row and column center.
*
* @ingroup afw
*/
Expand Down Expand Up @@ -90,8 +89,7 @@ class IntegerDeltaFunction1 : public Function1<ReturnT> {
*
* f(x) = 1 if x == xo and y == yo, 0 otherwise.
*
* For use as a kernel function be sure to handle the offset for row and column center;
* see examples/deltaFunctionKernel for an example.
* For use as a kernel function be sure to handle the offset for row and column center.
*
* @ingroup afw
*/
Expand Down

0 comments on commit 54aa0f3

Please sign in to comment.