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



x
The X coordinate of the location.
y
The Y coordinate of the location.
x
The X coordinate of the location.
y
The Y coordinate of the location.
Gets the resulting transformed data complex at the given location.

Syntax

Visual Basic (Declaration) 
Public Function GetDataOf( _
   ByVal x As Integer, _
   ByVal y As Integer _
) As Complex
Visual Basic (Usage)Copy Code
Dim instance As FourierTransformInformation
Dim x As Integer
Dim y As Integer
Dim value As Complex
 
value = instance.GetDataOf(x, y)
C# 
public Complex GetDataOf( 
   int x,
   int y
)
C++/CLI 
public:
Complex GetDataOf( 
   int x,
   int y
) 

Parameters

x
The X coordinate of the location.
y
The Y coordinate of the location.

Return Value

A Complex representing the transomed data complex at the given location.

Example

For example, refer to FastFourierTransformCommand.

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