Specifications
Intel
®
Image Processing Library Reference Manual
6-8
6
DeleteConvKernel
DeleteConvKernelFP
Deletes a convolution
kernel.
void iplDeleteConvKernel(IplConvKernel*
kernel
);
void iplDeleteConvKernelFP(IplConvKernelFP*
kernel
);
kernel
The kernel to delete.
Discussion
Functions iplDeleteConvKernel() and iplDeleteConvKernelFP()
must be used to delete convolution kernels created, respectively, by
iplCreateConvKernel() and iplCreateConvKernelFP().
Convolve2D
Convolve2DFP
Convolves an image
with one or more
convolution kernels.
void iplConvolve2D(IplImage*
srcImage
, IplImage*
dstImage
,
IplConvKernel**
kernel
, int
nKernels
, int
combineMethod
);
void iplConvolve2DFP(IplImage*
srcImage
, IplImage*
dstImage
,
IplConvKernelFP**
kernel
, int
nKernels
, int
combineMethod
);
srcImage
Thesourceimage.
dstImage
The resultant image.
kernel
A pointer to an array of pointers to convolution
kernels. The length of the array is
nKernels
.