http://www.emgu.com
Flag used for cvDFT
Namespace: Emgu.CV.CvEnumAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax [FlagsAttribute]
public enum DxtType
<FlagsAttribute>
Public Enumeration DxtType
[FlagsAttribute]
public enum class DxtType
[<FlagsAttribute>]
type DxtType
Members
| Member name | Value | Description |
---|
| Forward | 0 |
Do forward 1D or 2D transform. The result is not scaled
|
| Inverse | 1 |
Do inverse 1D or 2D transform. The result is not scaled. CV_DXT_FORWARD and CV_DXT_INVERSE are mutually exclusive, of course
|
| Scale | 2 |
Scale the result: divide it by the number of array elements. Usually, it is combined with CV_DXT_INVERSE, and one may use a shortcut
|
| Rows | 4 |
Do forward or inverse transform of every individual row of the input matrix. This flag allows user to transform multiple vectors simultaneously and can be used to decrease the overhead (which is sometimes several times larger than the processing itself), to do 3D and higher-dimensional transforms etc
|
| InvScale | 3 |
Inverse and scale
|
See Also