This class instantiates FITS primary HDU and IMAGE extension data. Essentially these data are a primitive multi-dimensional array.

Starting in version 0.9 of the nom.tam FITS library, this routine allows users to defer the reading of images if the FITS data is being read from a file. An ImageTiler object is supplied which can return an arbitrary subset of the image as a one dimensional array.A call to the getData() method will still return a multi-dimensional array, but the image data will not be read until the user explicitly requests. it.


Namespace: nom.tam.fits
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)

Syntax

Visual Basic (Declaration)
Public Class ImageData
    Inherits Data
C#
public class ImageData : Data
C++
ref class ImageData : Data
J#
public class ImageData extends Data
JScript
public class ImageData extends Data

Inheritance Hierarchy

System.Object
   nom.tam.fits.Data
      nom.tam.fits.ImageData

Thread Safety

Public static (Shared in Visual Basic)staticShared members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

See Also