Changeset 42715 for branches/2dbias/psLib/src/math/psVectorSmooth.h
- Timestamp:
- Aug 6, 2024, 5:35:16 PM (2 years ago)
- File:
-
- 1 edited
-
branches/2dbias/psLib/src/math/psVectorSmooth.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/2dbias/psLib/src/math/psVectorSmooth.h
r13918 r42715 14 14 15 15 /// Smooth a vector with a Gaussian 16 psVector *psVectorSmooth(psVector *output, ///< Output vector, or NULL16 psVector *psVectorSmooth(psVector *output, ///< Output vector, or NULL 17 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 extend20 );18 double sigma, ///< Gausian width (standard deviations) 19 double Nsigma ///< Number of standard deviations for Gaussian to extend 20 ); 21 21 22 22 /// Smooth a vector with a boxcar 23 psVector *psVectorBoxcar(psVector *output, ///< Output vector, or NULL23 psVector *psVectorBoxcar(psVector *output, ///< Output vector, or NULL 24 24 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 ); 27 28 28 29 /// @}
Note:
See TracChangeset
for help on using the changeset viewer.
