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



Gets the 2D data array.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Data As Complex()
Visual Basic (Usage)Copy Code
Dim instance As FourierTransformInformation
Dim value() As Complex
 
value = instance.Data
C# 
public Complex[] Data {get;}
C++/CLI 
public:
property array<Complex>^ Data {
   array<Complex>^ get();
}

Return Value

The 2D data array. Note that, although only one element is declared in the array, the array contains Width * Height elements. The frequency component for the pixel (row, col) is Data[row * Width + col].

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