LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
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();
}

Property 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: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also