IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 280


Ignore:
Timestamp:
Mar 22, 2004, 5:57:30 PM (22 years ago)
Author:
Paul Price
Message:

Added complex image types, for FFT.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psImage.h

    r279 r280  
    2222        psF32 **rows_f32;               ///< pointers to psF32 data
    2323        psF64 **rows_f64;               ///< pointers to psF64 data
     24        psComplex **rows_complex;       //!< pointers to psComplex data
    2425    } rows;
    2526    psImage *parent;                    ///< parent, if a subimage
     
    244245
    245246/*** image FFT operations ***/
    246 /// Perform an FFT on the image.
    247 psImage *
    248 psImageFFT(psImage *input,              ///< image to FFT
     247/// Perform an FFT on the image.  The output image type is psComplex.
     248psImage *
     249psImageFFT(psImage *output,             //!< Output image
     250           const psImage *input,        ///< image to FFT
    249251           int direction                ///< FFT direction
    250252    );
Note: See TracChangeset for help on using the changeset viewer.