typedef struct _FTARRAY
{
L_UINT uStructSize;
L_UINT uWidth;
L_UINT uHeight;
L_COMPLEX acxData[1];
} FTARRAY, * pFTARRAY;
The FTARRAY structure contains information about the complex 2D array that will hold the frequency components of the image.
FTARRAY structure size. Should be set to sizeof(FTARRAY).
2D array width in pixels.
2D array height in pixels.
The 2D data array. Note that, although only one element is declared in the array, the array contains uWidth * uHeight elements. The frequency component for the pixel (row, col) is acxData[row * uWidth + col].
This structure is used by:
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