LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
DiscreteFourierTransformCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing.Core Namespace : DiscreteFourierTransformCommandFlags Enumeration



Flags that indicate the transformation type, operation channel, frequency data type used to reconstruct the image, the clipping type, the used or computed frequencies range, the operation on the specified X harmonics range , and the operation on the specified Y harmonics range.

This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.

Syntax

Visual Basic (Declaration) 
<FlagsAttribute()>
Public Enum DiscreteFourierTransformCommandFlags 
   Inherits System.Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As DiscreteFourierTransformCommandFlags
C# 
[FlagsAttribute()]
public enum DiscreteFourierTransformCommandFlags : System.Enum, IComparableIConvertibleIFormattable  
C++/CLI 
[FlagsAttribute()]
public enum class DiscreteFourierTransformCommandFlags : public System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
AllUse or compute all harmonics. If this flag is used the range rectangle and the range flags will be ignored.
BlueUse the blue channel.
BothConstruct the image from both magnitude and phase data.
ClipClip the constructed image values so they are between 0 and 255.
DiscreteFourierTransformConvert the image into frequency domain and store the results in the Data property of the FourierTransformInformation object.
GrayUse the master channel. If this flag is combined with InverseDiscreteFourierTransform, the reconstructed image will be gray.
GreenUse the green channel.
InsideXUse or compute only the X harmonics inside the X range and ignore those outside the range.
InsideYUse or compute only the Y harmonics inside the Y range and ignore those outside the range.
InverseDiscreteFourierTransformConstruct an image using the frequency components from the Data property of the FourierTransformInformation object. This option will change the values of the Data property.
MagnitudeConstruct the image from the frequency magnitude data only.
NoneNo change.
OutsideXUse or compute only the X harmonics outside the X range and ignore those inside the range.
OutsideYUse or compute only the Y harmonics outside the Y range and ignore those inside the range.
PhaseConstruct the image from frequency phase data only.
RangeUse or compute the harmonics specified in the range rectangle.
RedUse the red channel.
ScaleScale the constructed image values so they are between 0 and 255.

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
Group Flags
Flags that represent the transformation type DiscreteFourierTransform, InverseDiscreteFourierTransform
Flags that represent the operation channel type Blue, Green, Red, Gray
Flags that represent the frequency data type used for constructing the image: this flag is used only if InverseDiscreteFourierTransform is set and will be ignored if DiscreteFourierTransform is set Magnitude, Phase, Both
Flags that represent the clipping type. This flag is used only if InverseDiscreteFourierTransform is set and will be ignored if FFT_FFT is set Clip, Scale
Flags that represent which harmonics are used All, Range
Flags that represent the operations on the X Harmonics range InsideX, OutsideX
Flags that represent the operations on the Y Harmonics range InsideY, OutsideY

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.Core.DiscreteFourierTransformCommandFlags

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also