A high-performance general-purpose compute library

Convolution Integral for three dimensional data. More...

Functions

AFAPI array convolve3 (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT, const convDomain domain=AF_CONV_AUTO)
 C++ Interface for convolution on three dimensional signals. More...
 
AFAPI array fftConvolve3 (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT)
 C++ Interface for convolution on 3D signals using FFT. More...
 
AFAPI af_err af_convolve3 (af_array *out, const af_array signal, const af_array filter, const af_conv_mode mode, af_conv_domain domain)
 C Interface for convolution on three dimensional signals. More...
 
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 convolution on 3D signals using FFT. More...
 

Detailed Description

Convolution Integral for three dimensional data.

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 size of the signal and the filter, any one of the following batch mode convolutions take place.

Note
All non-overlapping(interleaved) convolutions default to frequency domain AF_CONV_FREQ irrespective of the provided convolution mode argument.

For three dimensional inputs with m, n & p sizes along the 0th, 1st & 2nd axes respectively, given below are the possible batch operations.

Signal Size Filter Size Output Size Batch Mode Description
\( [m \ n \ p \ 1] \) \( [a \ b \ c \ 1] \) \( [m \ n \ p \ 1] \) No Batch Output will be a single convolve array
\( [m \ n \ p \ 1] \) \( [a \ b \ c \ d] \) \( [m \ n \ p \ d] \) Filter is Batched d filters applied to same input
\( [m \ n \ p \ q] \) \( [a \ b \ c \ 1] \) \( [m \ n \ p \ q] \) Signal is Batched 1 filter applied to q inputs
\( [m \ n \ p \ k] \) \( [a \ b \ c \ k] \) \( [m \ n \ p \ k] \) Identical Batches k filters applied to k inputs in one-to-one correspondence
Note
For the above tabular illustrations, we assumed af_conv_mode is AF_CONV_DEFAULT.

Function Documentation

◆ af_convolve3()

AFAPI af_err af_convolve3 ( af_array out,
const af_array  signal,
const af_array  filter,
const af_conv_mode  mode,
af_conv_domain  domain 
)

C Interface for convolution on three dimensional signals.

Parameters
[out]outis convolved array
[in]signalis the input signal
[in]filteris the signal that shall be flipped for the convolution operation
[in]modeindicates if the convolution should be expanded or not(where output size equals input)
[in]domainspecifies if the convolution should be performed in frequency os spatial domain
Returns
AF_SUCCESS if the convolution is successful, otherwise an appropriate error code is returned.
Note
The default parameter of domain, AF_CONV_AUTO, heuristically switches between frequency and spatial domain.

◆ af_fft_convolve3()

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 convolution on 3D signals using FFT.

Parameters
[out]outis convolved array
[in]signalis the input signal
[in]filteris the signal that shall be used for the convolution operation
[in]modeindicates if the convolution should be expanded or not(where output size equals input)
Returns
AF_SUCCESS if the convolution is successful, otherwise an appropriate error code is returned.

◆ convolve3()

AFAPI array convolve3 ( const array signal,
const array filter,
const convMode  mode = AF_CONV_DEFAULT,
const convDomain  domain = AF_CONV_AUTO 
)

C++ Interface for convolution on three dimensional signals.

// vector<dim4> numDims;
// vector<vector<float> > in;
array signal(numDims[0], &(in[0].front()));
// signal dims = [10 11 2 2]
array filter(numDims[1], &(in[1].front()));
// filter dims = [4 2 3 2]
array output = convolve3(signal, filter, AF_CONV_DEFAULT);
// output dims = [10 11 2 2] - same as input since expand(3rd argument is
// false) however, notice that the 4th dimension is > 1 for both signal and
// the filter, therefore many to many batch mode will be activated where
// each 3d signal is convolved with the corresponding 3d filter
A multi dimensional data container.
Definition: array.h:37
@ AF_CONV_DEFAULT
Output of the convolution is the same size as input.
Definition: defines.h:305
AFAPI array convolve3(const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT, const convDomain domain=AF_CONV_AUTO)
C++ Interface for convolution on three dimensional signals.
AFAPI array filter(const array &image, const array &kernel)
Image Filtering.
Parameters
[in]signalis the input signal
[in]filteris the signal that shall be flipped for the convolution operation
[in]modeindicates if the convolution should be expanded or not(where output size equals input)
[in]domainspecifies if the convolution should be performed in frequency os spatial domain
Returns
the convolved array
Note
The default parameter of domain, AF_CONV_AUTO, heuristically switches between frequency and spatial domain.

◆ fftConvolve3()

AFAPI array fftConvolve3 ( const array signal,
const array filter,
const convMode  mode = AF_CONV_DEFAULT 
)

C++ Interface for convolution on 3D signals using FFT.

Parameters
[in]signalis the input signal
[in]filteris the signal that shall be used for the convolution operation
[in]modeindicates if the convolution should be expanded or not(where output size equals input)
Returns
the convolved array