Changeset 4970
- Timestamp:
- Sep 7, 2005, 2:07:59 PM (21 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 4 edited
-
imageops/psImageStats.c (modified) (2 diffs)
-
imageops/psImageStats.h (modified) (2 diffs)
-
math/psPolynomial.c (modified) (2 diffs)
-
math/psSpline.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/imageops/psImageStats.c
r4544 r4970 9 9 * @author GLG, MHPCC 10 10 * 11 * @version $Revision: 1.7 6$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-0 7-12 19:33:49 $11 * @version $Revision: 1.77 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-09-08 00:07:59 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 27 27 #include "psStats.h" 28 28 #include "psImage.h" 29 #include "ps Functions.h"29 #include "psPolynomial.h" 30 30 #include "psImageStats.h" 31 31 #include "psConstants.h" -
trunk/psLib/src/imageops/psImageStats.h
r4385 r4970 9 9 * @author GLG, MHPCC 10 10 * 11 * @version $Revision: 1.2 4$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-0 6-25 00:51:28$11 * @version $Revision: 1.25 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-09-08 00:07:59 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 21 21 #include "psImage.h" 22 22 #include "psStats.h" 23 #include "ps Functions.h"23 #include "psPolynomial.h" 24 24 25 25 /// @addtogroup ImageStats -
trunk/psLib/src/math/psPolynomial.c
r4969 r4970 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.11 7$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-09-08 00:0 2:48$9 * @version $Revision: 1.118 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-09-08 00:07:59 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 82 82 { 83 83 return ( psMemGetDeallocator(ptr) == (psFreeFunc)polynomial4DFree ); 84 }85 86 bool psMemCheckSpline1D(psPtr ptr)87 {88 return ( psMemGetDeallocator(ptr) == (psFreeFunc)spline1DFree );89 84 } 90 85 -
trunk/psLib/src/math/psSpline.c
r4969 r4970 7 7 * splines. 8 8 * 9 * @version $Revision: 1.12 0$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-09-08 00:0 2:48$9 * @version $Revision: 1.121 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-09-08 00:07:59 $ 11 11 * 12 12 * … … 270 270 XXX: Is there a psLib function for this? 271 271 *****************************************************************************/ 272 psVector *PsVectorDup (psVector *in)272 psVector *PsVectorDup2(psVector *in) 273 273 { 274 274 psVector *out = psVectorAlloc(in->n, in->type.type); … … 326 326 } 327 327 } 328 tmpSpline->knots = PsVectorDup ((psVector *) bounds);328 tmpSpline->knots = PsVectorDup2((psVector *) bounds); 329 329 330 330 psMemSetDeallocator(tmpSpline, (psFreeFunc)spline1DFree);
Note:
See TracChangeset
for help on using the changeset viewer.
