MayaFlux 0.1.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 12 of file ConvolutionTransformer.hpp.

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