IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 6, 2024, 5:35:16 PM (2 years ago)
Author:
hgao
Message:

enable clipped mean in psVectorBoxcar

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2dbias/psLib/src/math/psVectorSmooth.h

    r13918 r42715  
    1414
    1515/// Smooth a vector with a Gaussian
    16 psVector *psVectorSmooth(psVector *output, ///< Output vector, or NULL
     16psVector *psVectorSmooth(psVector *output,      ///< Output vector, or NULL
    1717                         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
    20                         );
     18                         double sigma,          ///< Gausian width (standard deviations)
     19                         double Nsigma          ///< Number of standard deviations for Gaussian to extend
     20);
    2121
    2222/// Smooth a vector with a boxcar
    23 psVector *psVectorBoxcar(psVector *output, ///< Output vector, or NULL
     23psVector *psVectorBoxcar(psVector *output,      ///< Output vector, or NULL
    2424                         const psVector *input, ///< Input vector (F32 or F64 only)
    25                          int size       ///< Boxcar size (one-sided size)
    26     );
     25                         int size,              ///< Boxcar size (one-sided size)
     26                         bool robust            ///< compute robust median or normal median
     27);
    2728
    2829/// @}
Note: See TracChangeset for help on using the changeset viewer.