#include <dlrComputerVision/image.h>
#include <dlrComputerVision/kernel.h>
#include <dlrNumeric/convolutionStrategy.h>
#include <cmath>
#include <dlrNumeric/convolve2D.h>
#include <dlrNumeric/functional.h>
Go to the source code of this file.
Namespaces | |
| namespace | dlr::computerVision |
| This namespace is still in the early stages of development. | |
Functions | |
| template<ImageFormat OutputFormat, ImageFormat IntermediateFormat, ImageFormat ImageFormat, class KernelType > | |
| Image< OutputFormat > | dlr::computerVision::filter2D (const Kernel< KernelType > &kernel, const Image< ImageFormat > &image, const typename ImageFormatTraits< OutputFormat >::PixelType fillValue, ConvolutionStrategy convolutionStrategy=DLR_CONVOLVE_PAD_RESULT) |
| This function filters an image with the given kernel. | |
| template<ImageFormat OutputFormat, ImageFormat IntermediateFormat, ImageFormat ImageFormat, class KernelType > | |
| void | dlr::computerVision::filter2D (Image< OutputFormat > &outputImage, const Kernel< KernelType > &kernel, const Image< ImageFormat > &image, const typename ImageFormatTraits< OutputFormat >::PixelType fillValue, ConvolutionStrategy convolutionStrategy=DLR_CONVOLVE_PAD_RESULT) |
| This function filters an image with the given kernel, placing the result into a pre-constructed Image instance. | |
Copyright (C) 2006 David LaRose, dlr@cs.cmu.edu See accompanying file, LICENSE.TXT, for details.
Definition in file filter.h.
1.5.8