Flag used for cvDFT

Namespace: Emgu.CV.CvEnum
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
[FlagsAttribute]
public enum CV_DXT
<FlagsAttribute> _
Public Enumeration CV_DXT
[FlagsAttribute]
public enum class CV_DXT

Members

MemberDescription
CV_DXT_FORWARD
do forward 1D or 2D transform. The result is not scaled
CV_DXT_INVERSE
do inverse 1D or 2D transform. The result is not scaled. CV_DXT_FORWARD and CV_DXT_INVERSE are mutually exclusive, of course
CV_DXT_SCALE
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
CV_DXT_ROWS
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
CV_DXT_INV_SCALE
Inverse and scale

See Also