Package jsky.image.fits.codec

Contains classes that implement FITS image support for JAI (a FITS codec).

See:
          Description

Class Summary
FITSCodec A subclass of ImageCodec that handles the FITS image format.
FITSData An abstract base class for performing data type specific operations on 2D FITS data.
FITSDataByte Used for byte FITS image data (2D).
FITSDataDouble Used for double FITS image data (2D).
FITSDataFloat Used for float FITS image data (2D).
FITSDataInt Used for int FITS image data (2D).
FITSDataShort Used for short FITS image data (2D).
FITSDecodeParam  
FITSDecoder An ImageDecoder for the FITS file format.
FITSEncodeParam  
FITSEncoder An ImageEncoder for the FITS file format.
FITSImage This is the core class for JAI FITS support.
 

Package jsky.image.fits.codec Description

Contains classes that implement FITS image support for JAI (a FITS codec). The main class is FITSImage. You can use this class directly, for example:

PlanarImage im = PlanarImage.wrapRenderedImage(new FITSImage(filename));

Or in the normal JAI way with:

JAI.create("fileload", filename)

NOTE: The direct method is more efficient, especially for large image files, since it avoids an extra layer of internal file buffering and uses a RandomAccessFile (internally in the FITS I/O code: actually a BufferedFile).