IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4970


Ignore:
Timestamp:
Sep 7, 2005, 2:07:59 PM (21 years ago)
Author:
gusciora
Message:

Split of psFunctions to psSpline and psPolynomial.

Location:
trunk/psLib/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/imageops/psImageStats.c

    r4544 r4970  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.76 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-07-12 19:33:49 $
     11 *  @version $Revision: 1.77 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-09-08 00:07:59 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2727#include "psStats.h"
    2828#include "psImage.h"
    29 #include "psFunctions.h"
     29#include "psPolynomial.h"
    3030#include "psImageStats.h"
    3131#include "psConstants.h"
  • trunk/psLib/src/imageops/psImageStats.h

    r4385 r4970  
    99*  @author GLG, MHPCC
    1010*
    11 *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2005-06-25 00:51:28 $
     11*  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2005-09-08 00:07:59 $
    1313*
    1414*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2121#include "psImage.h"
    2222#include "psStats.h"
    23 #include "psFunctions.h"
     23#include "psPolynomial.h"
    2424
    2525/// @addtogroup ImageStats
  • trunk/psLib/src/math/psPolynomial.c

    r4969 r4970  
    77*  polynomials.  It also contains a Gaussian functions.
    88*
    9 *  @version $Revision: 1.117 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2005-09-08 00:02:48 $
     9*  @version $Revision: 1.118 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2005-09-08 00:07:59 $
    1111*
    1212*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    8282{
    8383    return ( psMemGetDeallocator(ptr) == (psFreeFunc)polynomial4DFree );
    84 }
    85 
    86 bool psMemCheckSpline1D(psPtr ptr)
    87 {
    88     return ( psMemGetDeallocator(ptr) == (psFreeFunc)spline1DFree );
    8984}
    9085
  • trunk/psLib/src/math/psSpline.c

    r4969 r4970  
    77*  splines.
    88*
    9 *  @version $Revision: 1.120 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2005-09-08 00:02:48 $
     9*  @version $Revision: 1.121 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2005-09-08 00:07:59 $
    1111*
    1212*
     
    270270XXX: Is there a psLib function for this?
    271271 *****************************************************************************/
    272 psVector *PsVectorDup(psVector *in)
     272psVector *PsVectorDup2(psVector *in)
    273273{
    274274    psVector *out = psVectorAlloc(in->n, in->type.type);
     
    326326        }
    327327    }
    328     tmpSpline->knots = PsVectorDup((psVector *) bounds);
     328    tmpSpline->knots = PsVectorDup2((psVector *) bounds);
    329329
    330330    psMemSetDeallocator(tmpSpline, (psFreeFunc)spline1DFree);
Note: See TracChangeset for help on using the changeset viewer.