Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Cresson Remi
NDVITimeSeries
Commits
304d4063
Commit
304d4063
authored
Aug 03, 2017
by
remi cresson
Browse files
DOC: comments
parent
b8097cdb
Changes
2
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
304d4063
NDVI Time Series applications
#
NDVI Time Series applications
# TimeSeriesIndexTrend
#
# TimeSeriesIndexTrend
This application computes the trend of a given time series index (e.g. NDVI).
The implemented pipeline is described in Leroux et al. (https://doi.org/10.1016/j.rse.2017.01.014)
...
...
app/otbTimeSeriesIndexTrend.cxx
View file @
304d4063
...
...
@@ -51,25 +51,23 @@ public:
typedef
MultiToMonoChannelExtractROI
<
FloatVectorImageType
::
InternalPixelType
,
FloatImageType
::
PixelType
>
ExtractROIFilterType
;
typedef
ObjectList
<
ExtractROIFilterType
>
ExtractROIFilterListType
;
/**
functors
for reduce
typedefs
*/
/**
typedef
for reduce
operation
*/
typedef
otb
::
functor
::
TSAmplitudeReduceFunctor
<
FloatVectorImageType
::
PixelType
,
FloatVectorImageType
::
PixelType
>
TSAmplitudeReduceFunctorType
;
typedef
otb
::
functor
::
TSCumulatedRangeReduceFunctor
<
FloatVectorImageType
::
PixelType
,
FloatVectorImageType
::
PixelType
>
TSCumulatedRangeReduceFunctorType
;
typedef
otb
::
functor
::
TSMaxReduceFunctor
<
FloatVectorImageType
::
PixelType
,
FloatVectorImageType
::
PixelType
>
TSMaxReduceFunctorType
;
/** filters for reduce typedefs */
typedef
otb
::
UnaryFunctorImageFilter
<
FloatVectorImageType
,
FloatVectorImageType
,
TSAmplitudeReduceFunctorType
>
TSAmplitudeReduceFilterType
;
typedef
otb
::
UnaryFunctorImageFilter
<
FloatVectorImageType
,
FloatVectorImageType
,
TSCumulatedRangeReduceFunctorType
>
TSCumulatedRangeReduceFilterType
;
typedef
otb
::
UnaryFunctorImageFilter
<
FloatVectorImageType
,
FloatVectorImageType
,
TSMaxReduceFunctorType
>
TSMaxReduceFilterType
;
/** typedef for trend (slope, p-value
, correlation
) */
/** typedef for trend
computing
(slope, p-value) */
typedef
otb
::
functor
::
SlopeAndPValueFunctor
<
FloatVectorImageType
::
PixelType
,
FloatVectorImageType
::
PixelType
>
SlopeAndPValueFunctorType
;
typedef
otb
::
UnaryFunctorImageFilter
<
FloatVectorImageType
,
FloatVectorImageType
,
SlopeAndPValueFunctorType
>
SlopeAndPValueFilterType
;
/** typedefs for label
s
*/
/** typedefs for
trend
label
ing
*/
typedef
otb
::
functor
::
SlopeAndPValueLabelingFunctor
<
FloatVectorImageType
::
PixelType
,
UInt8VectorImageType
::
PixelType
>
SlopeAndPValueLabelFunctorType
;
typedef
otb
::
UnaryFunctorImageFilter
<
FloatVectorImageType
,
UInt8VectorImageType
,
SlopeAndPValueLabelFunctorType
>
SlopeAndPValueLabelFilterType
;
/*
dates
typedefs */
/* typedefs
for dates
*/
typedef
otb
::
functor
::
SingleDate
DateType
;
/* typedefs for image resampling */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment