DGtal 1.3.0
Loading...
Searching...
No Matches
TrueLocalEstimatorOnPoints.ih
1/**
2 * This program is free software: you can redistribute it and/or modify
3 * it under the terms of the GNU Lesser General Public License as
4 * published by the Free Software Foundation, either version 3 of the
5 * License, or (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
14 *
15 **/
16
17/**
18 * @file TrueLocalEstimatorOnPoints.ih
19 * @author David Coeurjolly (\c david.coeurjolly@liris.cnrs.fr )
20 * Laboratoire d'InfoRmatique en Image et Systèmes d'information - LIRIS (CNRS, UMR 5205), CNRS, France
21 *
22 * @date 2011/06/27
23 *
24 * Implementation of inline methods defined in TrueLocalEstimatorOnPoints.h
25 *
26 * This file is part of the DGtal library.
27 */
28
29
30//////////////////////////////////////////////////////////////////////////////
31#include <cstdlib>
32//////////////////////////////////////////////////////////////////////////////
33
34///////////////////////////////////////////////////////////////////////////////
35// IMPLEMENTATION of inline methods.
36///////////////////////////////////////////////////////////////////////////////
37
38///////////////////////////////////////////////////////////////////////////////
39// ----------------------- Standard services ------------------------------
40
41template <typename CIt, typename PShape, typename PShapeFunctor>
42inline
43DGtal::TrueLocalEstimatorOnPoints<CIt,PShape,PShapeFunctor>::TrueLocalEstimatorOnPoints()
44 : myFunctorPtr(nullptr) {}
45
46// ------------------------------------------------------------------------
47template <typename CIt, typename PShape, typename PShapeFunctor>
48inline
49DGtal::TrueLocalEstimatorOnPoints<CIt,PShape,PShapeFunctor>::~TrueLocalEstimatorOnPoints()
50{
51 if ( myFunctorPtr != nullptr )
52 delete myFunctorPtr;
53}
54
55///////////////////////////////////////////////////////////////////////////////
56// Interface - public :
57
58template <typename CIt, typename PShape, typename PShapeFunctor>
59inline
60void
61DGtal::TrueLocalEstimatorOnPoints<CIt,PShape,PShapeFunctor>
62::attach(const ParametricShape& aShape)
63{
64 if ( myFunctorPtr != nullptr )
65 delete myFunctorPtr;
66 myFunctorPtr = new ParametricShapeFunctor(aShape);
67}
68
69// ------------------------------------------------------------------------
70template <typename CIt, typename PShape, typename PShapeFunctor>
71inline
72typename DGtal::TrueLocalEstimatorOnPoints<CIt,PShape,PShapeFunctor>::Quantity
73DGtal::TrueLocalEstimatorOnPoints<CIt,PShape,PShapeFunctor>
74::eval(const ConstIterator& it, const double h) const
75{
76 ASSERT( isValid() );
77 RealPoint p( *it );
78 p *= h;
79 return myFunctorPtr->operator()(p);
80}
81
82// ------------------------------------------------------------------------
83template <typename CIt, typename PShape, typename PShapeFunctor>
84template <typename OutputIterator>
85inline
86OutputIterator
87DGtal::TrueLocalEstimatorOnPoints<CIt,PShape,PShapeFunctor>
88::eval(const ConstIterator& itb,
89 const ConstIterator& ite,
90 OutputIterator result,
91 const double h) const
92{
93 ASSERT( isValid() );
94 if (isEmpty(itb, ite))
95 return result;
96
97 // do-while loop to deal with the case of a whole circular range
98 ConstIterator it = itb;
99 do
100 {
101 *result++ = eval( it, h );
102 ++it;
103 } while (it != ite);
104
105 return result;
106}
107
108// ------------------------------------------------------------------------
109template <typename CIt, typename PShape, typename PShapeFunctor>
110inline
111bool
112DGtal::TrueLocalEstimatorOnPoints<CIt,PShape,PShapeFunctor>::isValid() const
113{
114 return myFunctorPtr != nullptr;
115}