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.
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.
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/>.
18 * @file FPLengthEstimator.ih
19 * @author Tristan Roussillon (\c
20 * tristan.roussillon@liris.cnrs.fr ) Laboratoire d'InfoRmatique en
21 * Image et Systèmes d'information - LIRIS (CNRS, UMR 5205), CNRS,
27 * Implementation of inline methods defined in FPLengthEstimator.h
29 * This file is part of the DGtal library.
33 //////////////////////////////////////////////////////////////////////////////
35 //////////////////////////////////////////////////////////////////////////////
37 ///////////////////////////////////////////////////////////////////////////////
38 // IMPLEMENTATION of inline methods.
39 ///////////////////////////////////////////////////////////////////////////////
41 ///////////////////////////////////////////////////////////////////////////////
42 // Interface - public :
46 typename DGtal::FPLengthEstimator<T>::Quantity
47 DGtal::FPLengthEstimator<T>::eval(const ConstIterator& itb,
48 const ConstIterator& ite, const double h) const
53 if ( isEmpty(itb,ite) )
56 FaithfulPolygon fp( itb, ite );
57 std::vector<Point> points(fp.size());
58 fp.copyFP( points.begin() );
60 typename std::vector<Point>::const_iterator i = points.begin();
61 typename std::vector<Point>::const_iterator j = i;
63 const typename std::vector<Point>::const_iterator end = points.end();
65 for ( ; j != end; ++i, ++j )
68 val += v.norm(Vector::L_2);
70 if ( IsCirculator<ConstIterator>::value )
72 Vector v( points.front() - *i );
73 val += v.norm(Vector::L_2);
84 // ------------------------------------------------------------------------
88 DGtal::FPLengthEstimator<T>::selfDisplay ( std::ostream & out ) const
90 out << "[FPLengthEstimator]";
94 out<< " not initialized";
97 // ------------------------------------------------------------------------
101 DGtal::FPLengthEstimator<T>::isValid() const
108 ///////////////////////////////////////////////////////////////////////////////
109 // Implementation of inline functions //
111 template <typename T>
114 DGtal::operator<< ( std::ostream & out,
115 const FPLengthEstimator<T> & object )
117 object.selfDisplay( out );
122 ///////////////////////////////////////////////////////////////////////////////