Convolution Operations
[Image Processing]
Detailed Description
- See im_process_loc.h
Functions | |
int | imProcessConvolve (const imImage *src_image, imImage *dst_image, const imImage *kernel) |
int | imProcessConvolveRep (const imImage *src_image, imImage *dst_image, const imImage *kernel, int count) |
int | imProcessCompassConvolve (const imImage *src_image, imImage *dst_image, imImage *kernel) |
void | imProcessRotateKernel (imImage *kernel) |
int | imProcessDiffOfGaussianConvolve (const imImage *src_image, imImage *dst_image, float stddev1, float stddev2) |
int | imProcessDiffOfGaussianConvolveRep (const imImage *src_image, imImage *dst_image, float stddev1, float stddev2) |
int | imProcessLapOfGaussianConvolve (const imImage *src_image, imImage *dst_image, float stddev) |
int | imProcessMeanConvolve (const imImage *src_image, imImage *dst_image, int kernel_size) |
int | imProcessGaussianConvolveRep (const imImage *src_image, imImage *dst_image, float stddev) |
int | imProcessGaussianConvolve (const imImage *src_image, imImage *dst_image, float stddev) |
int | imProcessSobelConvolve (const imImage *src_image, imImage *dst_image) |
void | imProcessZeroCrossing (const imImage *src_image, imImage *dst_image) |
void | imProcessCanny (const imImage *src_image, imImage *dst_image, float stddev) |
int | imGaussianStdDev2Repetitions (float stddev) |
int | imGaussianStdDev2KernelSize (float stddev) |
Function Documentation
|
Base Convolution with a kernel. |
|
Repeats the convolution a number of times. |
|
Convolve with a kernel rotating it 8 times and getting the absolute maximum value. |
|
Utility function to rotate a kernel one time. |
|
Difference(Gaussian1, Gaussian2). |
|
Difference(Gaussian1, Gaussian2) using gaussian repetitions. |
|
Convolution with a laplacian of a gaussian kernel. |
|
Convolution with a kernel full of "1"s inside a circle. |
|
Convolution with a gaussian kernel. The gaussian in obtained by repetition of a base 3x3 IM_INT kernel. |
|
Convolution with a float gaussian kernel. |
|
Magnitude of the sobel convolution. |
|
Finds the zero crossings of IM_INT and IM_FLOAT images. Crossings are marked with non zero values indicating the intensity of the edge. It is usually used after a second derivative, laplace. |
|
First part of the Canny edge detector. Includes the gaussian filtering and the nonmax suppression. J. R. Parker "Algoritms for Image Processing and Computer Vision" WILEY |
|
Calculates the number of 3x3 gaussian repetitions given the standard deviation. |
|
Calculates the kernel size given the standard deviation. |