#include <gandalf/vision/mask1D.h>
#include <gandalf/image/image_defs.h>
#include <gandalf/image/image_channel.h>
Go to the source code of this file.
Functions | |
Gan_Bool | gan_convolve1D_f (float *source, int sstride, float *dest, int dstride, Gan_Mask1D *mask, unsigned int dsize) |
1D convolution function for float arrays. | |
Gan_Bool | gan_convolve1D_d (double *source, int sstride, double *dest, int dstride, Gan_Mask1D *mask, unsigned int dsize) |
1D convolution function for double arrays. | |
Gan_Bool | gan_convolve1D_i (int *source, int sstride, int *dest, int dstride, Gan_Mask1D *mask, unsigned int dsize) |
1D convolution function for integer arrays. | |
Gan_Bool | gan_convolve_circular1D_f (float *source, int sstride, float *dest, int dstride, Gan_Mask1D *mask, unsigned int dsize) |
Circular 1D convolution function for float arrays. | |
Gan_Bool | gan_convolve_circular1D_d (double *source, int sstride, double *dest, int dstride, Gan_Mask1D *mask, unsigned int dsize) |
Circular 1D convolution function for double arrays. | |
Gan_Image * | gan_image_convolve1Dx_q (Gan_Image *image, Gan_ImageChannelType channel, Gan_Mask1D *mask, Gan_Image *dest) |
Convolves an image in the x-direction. | |
Gan_Image * | gan_image_convolve1Dy_q (Gan_Image *image, Gan_ImageChannelType channel, Gan_Mask1D *mask, Gan_Image *dest) |
Convolves an image in the y-direction. | |
Gan_Image * | gan_image_convolve1Dx_s (Gan_Image *image, Gan_ImageChannelType channel, Gan_Mask1D *mask) |
Macro: Convolves an image in the x-direction. | |
Gan_Image * | gan_image_convolve1Dy_s (Gan_Image *image, Gan_ImageChannelType channel, Gan_Mask1D *mask) |
Macro: Convolves an image in the y-direction. |
Part of: Gandalf Library
Revision: Last edited: Author:
Copyright: (c) 2000 Imagineer Software Limited
|
1D convolution function for double arrays.
double.
|
|
1D convolution function for float arrays.
float.
|
|
1D convolution function for integer arrays.
int. There is no checking for overflow.
|
|
Circular 1D convolution function for double arrays.
double. The input source array is treated as circular, so that no values are lost at the ends.
|
|
Circular 1D convolution function for float arrays.
float. The input source array is treated as circular, so that no values are lost at the ends.
|
|
Convolves an image in the x-direction.
Macro call to gan_image_convolve1Dx_q().
|
|
Convolves an image in the y-direction.
Macro call to gan_image_convolve1Dy_q().
|