[−][src]Function arrayfire::convolve2
pub fn convolve2<T, F>(
signal: &Array<T>,
filter: &Array<F>,
mode: ConvMode,
domain: ConvDomain
) -> Array<T> where
T: HasAfEnum,
F: HasAfEnum,
2d convolution
Parameters
signalis the input signalfilteris the signal that shall be flipped for convolution operationmodeindicates if the convolution should be expanded or not(where output size equals input). It takes a value of type ConvModedomainindicates if the convolution should be performed in frequencey or spatial domain. It takes a value of type ConvDomain
Return Values
Convolved Array