Flags that indicate the transformation type, operation channel, frequency data type used to reconstruct the image, and the clipping type. This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[FlagsAttribute()]
public enum FastFourierTransformCommandFlags
<FlagsAttribute()>
Public Enum FastFourierTransformCommandFlags
typedef NS_OPTIONS(NSUInteger, LTFastFourierTransformCommandFlags)
public enum FastFourierTransformCommandFlags
[FlagsAttribute()]
public enum class FastFourierTransformCommandFlags
Value | Member | Description |
---|---|---|
0x00000000 | None | No change. |
0x00000001 | FastFourierTransform | Convert the image into the frequency domain and store the results in the Data property of the FourierTransformInformation object. |
0x00000002 | InverseFastFourierTransform | Construct an image from the frequency components in the Data property of the FourierTransformInformation object. The image will be stored in the Run method image. This option will change the values of the Data property of the FourierTransformInformation object. |
0x00000010 | Blue | Work on the blue channel. |
0x00000020 | Green | Work on the green channel. |
0x00000030 | Red | Work on the red channel. |
0x00000040 | Gray | Work on the master channel. If this flag is combined with InverseFastFourierTransform, the reconstructed image will be gray. |
0x00000100 | Magnitude | Construct the image from the frequency magnitude only. |
0x00000200 | Phase | Construct the image from the frequency phase only. |
0x00000300 | Both | Construct the image from both magnitude and phase. |
0x00001000 | Clip | Clip the constructed image values to be between 0 and 255. |
0x00002000 | Scale | Scale the constructed image Valid values are between 0 and 255. |
0x00010000 | PadOptimally | Pad the width and height of the image so that each is its nearest power of two. |
0x00020000 | PadSquare | Pad the width and height of the image so that each is the same power of two nearest to the larger of the two dimensions. |
You can use a bitwise OR ( ¦ ) to specify one flag from each group.
Group | Flags |
Flags that represent the transformation type | FastFourierTransform, InverseFastFourierTransform |
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 InverseFastFourierTransform is set and will be ignored if FastFourierTransform is set | Magnitude, Phase, Both |
Flags that represent the clipping type. This flag is used only if InverseFastFourierTransform is set and will be ignored if FFT_FFT is set | Clip, Scale |
Flags that represent how to pad an image that is not a power of two | PadOptimally, PadSquare |
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document