Changeset 2283
- Timestamp:
- Nov 4, 2004, 12:14:17 PM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 8 edited
-
dataManip/psVectorFFT.c (modified) (2 diffs)
-
dataManip/psVectorFFT.h (modified) (3 diffs)
-
fft/psImageFFT.c (modified) (2 diffs)
-
fft/psImageFFT.h (modified) (3 diffs)
-
fft/psVectorFFT.c (modified) (2 diffs)
-
fft/psVectorFFT.h (modified) (3 diffs)
-
image/psImageFFT.c (modified) (2 diffs)
-
image/psImageFFT.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataManip/psVectorFFT.c
r2273 r2283 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1.2 8$ $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 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 29 29 static psBool p_fftwWisdomImported = false; 30 30 31 psVector* psVectorFFT(psVector* out, const psVector* in, psF ftDirectiondirection)31 psVector* psVectorFFT(psVector* out, const psVector* in, psFFTFlags direction) 32 32 { 33 33 psU32 numElements; -
trunk/psLib/src/dataManip/psVectorFFT.h
r1984 r2283 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1.1 5$ $Name: not supported by cvs2svn $10 * @date $Date: 2004-1 0-06 21:40:13$9 * @version $Revision: 1.16 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2004-11-04 22:14:17 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 31 31 /// psImageFFT/psVectorFFT should perform a reverse FFT with a real result. 32 32 PS_FFT_REAL_RESULT = 4 33 } psF ftDirection;33 } psFFTFlags; 34 34 35 35 … … 46 46 psVector* out, ///< a psVector to recycle. If NULL, a new psVector is made. 47 47 const psVector* in, ///< the vector to apply transform to 48 psF ftDirection direction///< the direction of the transform48 psFFTFlags direction ///< the direction of the transform 49 49 ); 50 50 -
trunk/psLib/src/fft/psImageFFT.c
r2273 r2283 5 5 * @author Robert DeSonia, MHPCC 6 6 * 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 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 28 28 static psBool p_fftwWisdomImported = false; 29 29 30 psImage* psImageFFT(psImage* out, const psImage* in, psF ftDirectiondirection)30 psImage* psImageFFT(psImage* out, const psImage* in, psFFTFlags direction) 31 31 { 32 32 psU32 numCols; -
trunk/psLib/src/fft/psImageFFT.h
r1625 r2283 7 7 * @author Robert DeSonia, MHPCC 8 8 * 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 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 17 17 18 18 #include "psImage.h" 19 #include "psVectorFFT.h" // for psF ftDirection19 #include "psVectorFFT.h" // for psFFTFlags 20 20 21 21 /// @addtogroup Transform … … 34 34 psImage* out, ///< a psImage to recycle. If NULL, a new psImage is made. 35 35 const psImage* in, ///< the psImage to apply transform to 36 psF ftDirection direction///< the direction of the transform36 psFFTFlags direction ///< the direction of the transform 37 37 ); 38 38 -
trunk/psLib/src/fft/psVectorFFT.c
r2273 r2283 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1.2 8$ $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 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 29 29 static psBool p_fftwWisdomImported = false; 30 30 31 psVector* psVectorFFT(psVector* out, const psVector* in, psF ftDirectiondirection)31 psVector* psVectorFFT(psVector* out, const psVector* in, psFFTFlags direction) 32 32 { 33 33 psU32 numElements; -
trunk/psLib/src/fft/psVectorFFT.h
r1984 r2283 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1.1 5$ $Name: not supported by cvs2svn $10 * @date $Date: 2004-1 0-06 21:40:13$9 * @version $Revision: 1.16 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2004-11-04 22:14:17 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 31 31 /// psImageFFT/psVectorFFT should perform a reverse FFT with a real result. 32 32 PS_FFT_REAL_RESULT = 4 33 } psF ftDirection;33 } psFFTFlags; 34 34 35 35 … … 46 46 psVector* out, ///< a psVector to recycle. If NULL, a new psVector is made. 47 47 const psVector* in, ///< the vector to apply transform to 48 psF ftDirection direction///< the direction of the transform48 psFFTFlags direction ///< the direction of the transform 49 49 ); 50 50 -
trunk/psLib/src/image/psImageFFT.c
r2273 r2283 5 5 * @author Robert DeSonia, MHPCC 6 6 * 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 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 28 28 static psBool p_fftwWisdomImported = false; 29 29 30 psImage* psImageFFT(psImage* out, const psImage* in, psF ftDirectiondirection)30 psImage* psImageFFT(psImage* out, const psImage* in, psFFTFlags direction) 31 31 { 32 32 psU32 numCols; -
trunk/psLib/src/image/psImageFFT.h
r1625 r2283 7 7 * @author Robert DeSonia, MHPCC 8 8 * 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 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 17 17 18 18 #include "psImage.h" 19 #include "psVectorFFT.h" // for psF ftDirection19 #include "psVectorFFT.h" // for psFFTFlags 20 20 21 21 /// @addtogroup Transform … … 34 34 psImage* out, ///< a psImage to recycle. If NULL, a new psImage is made. 35 35 const psImage* in, ///< the psImage to apply transform to 36 psF ftDirection direction///< the direction of the transform36 psFFTFlags direction ///< the direction of the transform 37 37 ); 38 38
Note:
See TracChangeset
for help on using the changeset viewer.
