|
3D Convolution using Fast Fourier Transform More...
Functions | |
AFAPI af_err | af_fft_convolve3 (af_array *out, const af_array signal, const af_array filter, const af_conv_mode mode) |
C Interface for FFT-based convolution on three dimensional signals. More... | |
3D Convolution using Fast Fourier Transform
A convolution is a common operation between a source array, a, and a filter (or kernel) array b. The answer to the convolution is the same as computing the coefficients in polynomial multiplication, if a and b are the coefficients.
Another way to think about it is that the filter kernel is centered on each pixel in a, and the output for that pixel or data point is the sum of the products.
Depending on the dimensions of the input signal and the filter signal, any one of the following batch mode convolutions take place.
AFAPI af_err af_fft_convolve3 | ( | af_array * | out, |
const af_array | signal, | ||
const af_array | filter, | ||
const af_conv_mode | mode | ||
) |
C Interface for FFT-based convolution on three dimensional signals.
[out] | out | is convolved array |
[in] | signal | is the input signal |
[in] | filter | is the signal that shall be used for the convolution operation |
[in] | mode | indicates if the convolution should be expanded or not(where output size equals input) |