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 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...
 

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

For example, if the signal is three dimensional with m, n & p sizes along the 0th, 1st & 2nd dimensions respectively, then the possible batch operations are as follows.

Input Signal Dimensions Filter Dimensions Output Dimensions Batch Mode Explanation
[m n 1 1] [m n 1 1] [m n 1 1] No Batch Output will be a single convolve array
[m n 1 1] [m n p 1] [m n p 1] Filter is Batched p filters applied to same input
[m n p 1] [m n 1 1] [m n p 1] Signal is Batched 1 filter applied to p inputs
[m n p 1] [m n p 1] [m n p 1] Identical Batches p filters applied to p inputs in one-to-one correspondence
[m n p 1] [m n 1 q] [m n p q] Non-overlapping batches q filters applied to p inputs in to produce p x q results
[m n 1 p] [m n q 1] [m n q p] Non-overlapping batches q filters applied to p inputs in to produce q x p results

Function Documentation

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.
AFAPI array af::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;
af::array signal(numDims[0], &(in[0].front()));
//signal dims = [10 11 2 2]
af::array filter(numDims[1], &(in[1].front()));
//filter dims = [4 2 3 2]
af::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
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.