IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 11704


Ignore:
Timestamp:
Feb 7, 2007, 6:23:57 PM (19 years ago)
Author:
Paul Price
Message:

Fixes so it compiles. psVector FFTs don't work yet --- need to fix N/2 problem, in the same manner as psImage FFTs.

Location:
trunk/psLib/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/fft/psImageFFT.h

    r11703 r11704  
    55/// @author Robert DeSonia, MHPCC
    66///
    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 $
    99/// Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
    1010///
     
    5454/// of the output image are returned.  Only implemented for F32 input.
    5555bool psImageComplexMultiply(psImage **outReal, ///< Real part of output
    56                             psimage **outImag, ///< Imaginary part of output
     56                            psImage **outImag, ///< Imaginary part of output
    5757                            const psImage *in1Real, ///< Real part of input 1
    5858                            const psImage *in1Imag, ///< Imaginary part of input 1
  • trunk/psLib/src/fft/psVectorFFT.c

    r11703 r11704  
    66 *  @author Robert DeSonia, MHPCC
    77 *
    8  *  @version $Revision: 1.37 $ $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 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    7373}
    7474
    75 bool psVectorBackwardFFT(psVector **out, const psVector *real, const psVector *imag)
     75bool psVectorBackwardFFT(psVector **out, const psVector *real, const psVector *imag, long origNum)
    7676{
    7777    PS_ASSERT_VECTOR_NON_NULL(real, false);
  • trunk/psLib/src/fft/psVectorFFT.h

    r11703 r11704  
    55/// @author Robert DeSonia, MHPCC
    66///
    7 /// @version $Revision: 1.20 $ $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 $
    99/// Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
    1010///
     
    4040                         const psVector *real, ///< Real input (F32)
    4141                         const psVector *imag, ///< Imaginary input (F32)
    42                          int origN      ///< Original number of elements
     42                         long origNum    ///< Original number of elements
    4343    );
    4444
  • trunk/psLib/src/imageops/psImageConvolve.c

    r11703 r11704  
    77/// @author Eugene Magnier, IfA
    88///
    9 /// @version $Revision: 1.43 $ $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 $
    1111///
    1212/// Copyright 2004-2007 Institute for Astronomy, University of Hawaii
     
    231231        SPATIAL_CONVOLVE_CASE(F64);
    232232      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.");
    234234    }
    235235
Note: See TracChangeset for help on using the changeset viewer.