IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 20, 2007, 10:21:30 AM (19 years ago)
Author:
Paul Price
Message:

Adding psVectorBoxcar for boxcar smoothing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psVectorSmooth.h

    r11248 r13918  
    22 * @brief smooth the input vector
    33 *
    4  * $Revision: 1.2 $ $Name: not supported by cvs2svn $
    5  * $Date: 2007-01-23 22:47:23 $
     4 * $Revision: 1.3 $ $Name: not supported by cvs2svn $
     5 * $Date: 2007-06-20 20:21:30 $
    66 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
    77 */
     
    1313/// @{
    1414
    15 // Smooth a vector with a Gaussian
    16 psVector *psVectorSmooth(psVector *output, // Output vector, or NULL
    17                          const psVector *input, // Input vector (F32 or F64 only)
    18                          double sigma,  // Gausian width (standard deviations)
    19                          double Nsigma  // Number of standard deviations for Gaussian to extend (either side)
     15/// Smooth a vector with a Gaussian
     16psVector *psVectorSmooth(psVector *output, ///< Output vector, or NULL
     17                         const psVector *input, ///< Input vector (F32 or F64 only)
     18                         double sigma,  ///< Gausian width (standard deviations)
     19                         double Nsigma  ///< Number of standard deviations for Gaussian to extend
    2020                        );
     21
     22/// Smooth a vector with a boxcar
     23psVector *psVectorBoxcar(psVector *output, ///< Output vector, or NULL
     24                         const psVector *input, ///< Input vector (F32 or F64 only)
     25                         int size       ///< Boxcar size (one-sided size)
     26    );
     27
    2128/// @}
    2229#endif
Note: See TracChangeset for help on using the changeset viewer.