MayaFlux 0.3.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ ConvolutionOperation

enum class MayaFlux::Yantra::ConvolutionOperation : uint8_t
strong

Specific convolution operations supported.

Enumerator
DIRECT_CONVOLUTION 

Standard convolution.

CROSS_CORRELATION 

Cross-correlation.

MATCHED_FILTER 

Matched filtering.

DECONVOLUTION 

Deconvolution.

AUTO_CORRELATION 

Auto-correlation.

Definition at line 14 of file ConvolutionTransformer.hpp.

14 : uint8_t {
15 DIRECT_CONVOLUTION, ///< Standard convolution
16 CROSS_CORRELATION, ///< Cross-correlation
17 MATCHED_FILTER, ///< Matched filtering
18 DECONVOLUTION, ///< Deconvolution
19 AUTO_CORRELATION ///< Auto-correlation
20};
@ DIRECT_CONVOLUTION
Standard convolution.