Skip to content
Snippets Groups Projects
Commit d664598d authored by Jordi Inglada's avatar Jordi Inglada
Browse files

DOC: add documentation for the Savitzky-Golay functor

parent 185d5f2d
Branches
Tags
No related merge requests found
......@@ -21,10 +21,21 @@
#include "otbTimeSeries.h"
#include "otbTimeSeriesLeastSquareFittingFunctor.h"
namespace otb
{
namespace Functor
{
/** \class otbSavitzkyGolayInterpolationFunctor
* \brief: This functor implements a local polynomial regression (of degree k) on a series of values (of at least k+1 points which are treated as being equally spaced in the series) to determine the smoothed value for each point.
Savitzky, A.; Golay, M.J.E. (1964). "Smoothing and Differentiation of Data by Simplified Least Squares Procedures". Analytical Chemistry 36 (8): 1627–1639. doi:10.1021/ac60214a047
*
*/
template <unsigned int Radius, class TSeries, class TDates, class TWeight = TSeries>
class SavitzkyGolayInterpolationFunctor
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment