Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.12.10
Range Property
See Also 
Leadtools.ImageProcessing.Core Namespace > DiscreteFourierTransformCommand Class : Range Property




Gets or sets the frequency range to be computed when the DiscreteFourierTransformCommandFlags.InverseDiscreteFourierTransform flag is set.

Syntax

Visual Basic (Declaration) 
Public Property Range As Rectangle
Visual Basic (Usage)Copy Code
Dim instance As DiscreteFourierTransformCommand
Dim value As Rectangle
 
instance.Range = value
 
value = instance.Range
C# 
public Rectangle Range {get; set;}
Managed Extensions for C++ 
public: __property Rectangle get_Range();
public: __property void set_Range( 
   Rectangle value
);
C++/CLI 
public:
property Rectangle Range {
   Rectangle get();
   void set (Rectangle value);
}

Return Value

Specifies the frequency range to be computed when the DiscreteFourierTransformCommandFlags.InverseDiscreteFourierTransform flag is set. It specifies the frequency range that will be used in the image construction when DiscreteFourierTransformCommandFlags.InverseDiscreteFourierTransform is set. The left value refers to the minimum X harmonic, the right refers to the maximum X harmonic, the top refers to the minimum Y harmonic and the bottom refers to the maximum Y harmonic. The maximum X harmonic equals (Width -1) and the maximum Y harmonic equals (Height -1). The minimum X harmonic equals 0 and the minimum Y harmonic equals 0.

Example

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also