Changeset 11704
- Timestamp:
- Feb 7, 2007, 6:23:57 PM (19 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 4 edited
-
fft/psImageFFT.h (modified) (2 diffs)
-
fft/psVectorFFT.c (modified) (2 diffs)
-
fft/psVectorFFT.h (modified) (2 diffs)
-
imageops/psImageConvolve.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/fft/psImageFFT.h
r11703 r11704 5 5 /// @author Robert DeSonia, MHPCC 6 6 /// 7 /// @version $Revision: 1. 8$ $Name: not supported by cvs2svn $8 /// @date $Date: 2007-02-08 04: 17:58$7 /// @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 8 /// @date $Date: 2007-02-08 04:23:57 $ 9 9 /// Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 10 10 /// … … 54 54 /// of the output image are returned. Only implemented for F32 input. 55 55 bool psImageComplexMultiply(psImage **outReal, ///< Real part of output 56 ps image **outImag, ///< Imaginary part of output56 psImage **outImag, ///< Imaginary part of output 57 57 const psImage *in1Real, ///< Real part of input 1 58 58 const psImage *in1Imag, ///< Imaginary part of input 1 -
trunk/psLib/src/fft/psVectorFFT.c
r11703 r11704 6 6 * @author Robert DeSonia, MHPCC 7 7 * 8 * @version $Revision: 1.3 7$ $Name: not supported by cvs2svn $9 * @date $Date: 2007-02-08 04: 17:58$8 * @version $Revision: 1.38 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2007-02-08 04:23:57 $ 10 10 * 11 11 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 73 73 } 74 74 75 bool psVectorBackwardFFT(psVector **out, const psVector *real, const psVector *imag )75 bool psVectorBackwardFFT(psVector **out, const psVector *real, const psVector *imag, long origNum) 76 76 { 77 77 PS_ASSERT_VECTOR_NON_NULL(real, false); -
trunk/psLib/src/fft/psVectorFFT.h
r11703 r11704 5 5 /// @author Robert DeSonia, MHPCC 6 6 /// 7 /// @version $Revision: 1.2 0$ $Name: not supported by cvs2svn $8 /// @date $Date: 2007-02-08 04: 17:58$7 /// @version $Revision: 1.21 $ $Name: not supported by cvs2svn $ 8 /// @date $Date: 2007-02-08 04:23:57 $ 9 9 /// Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 10 10 /// … … 40 40 const psVector *real, ///< Real input (F32) 41 41 const psVector *imag, ///< Imaginary input (F32) 42 int origN///< Original number of elements42 long origNum ///< Original number of elements 43 43 ); 44 44 -
trunk/psLib/src/imageops/psImageConvolve.c
r11703 r11704 7 7 /// @author Eugene Magnier, IfA 8 8 /// 9 /// @version $Revision: 1.4 3$ $Name: not supported by cvs2svn $10 /// @date $Date: 2007-02-08 04: 17:58$9 /// @version $Revision: 1.44 $ $Name: not supported by cvs2svn $ 10 /// @date $Date: 2007-02-08 04:23:57 $ 11 11 /// 12 12 /// Copyright 2004-2007 Institute for Astronomy, University of Hawaii … … 231 231 SPATIAL_CONVOLVE_CASE(F64); 232 232 default: 233 psAbort( PS_FILE_LINE,"Should never get here: bad type that was asserted on previously.");233 psAbort("Should never get here: bad type that was asserted on previously."); 234 234 } 235 235
Note:
See TracChangeset
for help on using the changeset viewer.
