IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 2283


Ignore:
Timestamp:
Nov 4, 2004, 12:14:17 PM (22 years ago)
Author:
evanalst
Message:

Update type psFftDirection to psFFTFlags which is specified in SDR.

Location:
trunk/psLib/src
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataManip/psVectorFFT.c

    r2273 r2283  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.28 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2004-11-04 01:04:59 $
     7 *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2004-11-04 22:14:17 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2929static psBool p_fftwWisdomImported = false;
    3030
    31 psVector* psVectorFFT(psVector* out, const psVector* in, psFftDirection direction)
     31psVector* psVectorFFT(psVector* out, const psVector* in, psFFTFlags direction)
    3232{
    3333    psU32 numElements;
  • trunk/psLib/src/dataManip/psVectorFFT.h

    r1984 r2283  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-10-06 21:40:13 $
     9 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-11-04 22:14:17 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3131    /// psImageFFT/psVectorFFT should perform a reverse FFT with a real result.
    3232    PS_FFT_REAL_RESULT = 4
    33 } psFftDirection;
     33} psFFTFlags;
    3434
    3535
     
    4646    psVector* out,                     ///< a psVector to recycle.  If NULL, a new psVector is made.
    4747    const psVector* in,                ///< the vector to apply transform to
    48     psFftDirection direction           ///< the direction of the transform
     48    psFFTFlags direction               ///< the direction of the transform
    4949);
    5050
  • trunk/psLib/src/fft/psImageFFT.c

    r2273 r2283  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2004-11-04 01:05:00 $
     7 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2004-11-04 22:14:17 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2828static psBool p_fftwWisdomImported = false;
    2929
    30 psImage* psImageFFT(psImage* out, const psImage* in, psFftDirection direction)
     30psImage* psImageFFT(psImage* out, const psImage* in, psFFTFlags direction)
    3131{
    3232    psU32 numCols;
  • trunk/psLib/src/fft/psImageFFT.h

    r1625 r2283  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-08-25 21:10:09 $
     9 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-11-04 22:14:17 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    1717
    1818#include "psImage.h"
    19 #include "psVectorFFT.h"               // for psFftDirection
     19#include "psVectorFFT.h"               // for psFFTFlags
    2020
    2121/// @addtogroup Transform
     
    3434    psImage* out,                      ///< a psImage to recycle.  If NULL, a new psImage is made.
    3535    const psImage* in,                 ///< the psImage to apply transform to
    36     psFftDirection direction           ///< the direction of the transform
     36    psFFTFlags direction               ///< the direction of the transform
    3737);
    3838
  • trunk/psLib/src/fft/psVectorFFT.c

    r2273 r2283  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.28 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2004-11-04 01:04:59 $
     7 *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2004-11-04 22:14:17 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2929static psBool p_fftwWisdomImported = false;
    3030
    31 psVector* psVectorFFT(psVector* out, const psVector* in, psFftDirection direction)
     31psVector* psVectorFFT(psVector* out, const psVector* in, psFFTFlags direction)
    3232{
    3333    psU32 numElements;
  • trunk/psLib/src/fft/psVectorFFT.h

    r1984 r2283  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-10-06 21:40:13 $
     9 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-11-04 22:14:17 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3131    /// psImageFFT/psVectorFFT should perform a reverse FFT with a real result.
    3232    PS_FFT_REAL_RESULT = 4
    33 } psFftDirection;
     33} psFFTFlags;
    3434
    3535
     
    4646    psVector* out,                     ///< a psVector to recycle.  If NULL, a new psVector is made.
    4747    const psVector* in,                ///< the vector to apply transform to
    48     psFftDirection direction           ///< the direction of the transform
     48    psFFTFlags direction               ///< the direction of the transform
    4949);
    5050
  • trunk/psLib/src/image/psImageFFT.c

    r2273 r2283  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2004-11-04 01:05:00 $
     7 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2004-11-04 22:14:17 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2828static psBool p_fftwWisdomImported = false;
    2929
    30 psImage* psImageFFT(psImage* out, const psImage* in, psFftDirection direction)
     30psImage* psImageFFT(psImage* out, const psImage* in, psFFTFlags direction)
    3131{
    3232    psU32 numCols;
  • trunk/psLib/src/image/psImageFFT.h

    r1625 r2283  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-08-25 21:10:09 $
     9 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-11-04 22:14:17 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    1717
    1818#include "psImage.h"
    19 #include "psVectorFFT.h"               // for psFftDirection
     19#include "psVectorFFT.h"               // for psFFTFlags
    2020
    2121/// @addtogroup Transform
     
    3434    psImage* out,                      ///< a psImage to recycle.  If NULL, a new psImage is made.
    3535    const psImage* in,                 ///< the psImage to apply transform to
    36     psFftDirection direction           ///< the direction of the transform
     36    psFFTFlags direction               ///< the direction of the transform
    3737);
    3838
Note: See TracChangeset for help on using the changeset viewer.