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 DSSLengthEstimator.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 DSSLengthEstimator.h
29 * This file is part of the DGtal library.
33//////////////////////////////////////////////////////////////////////////////
35//////////////////////////////////////////////////////////////////////////////
37///////////////////////////////////////////////////////////////////////////////
38// IMPLEMENTATION of inline methods.
39///////////////////////////////////////////////////////////////////////////////
41///////////////////////////////////////////////////////////////////////////////
42// Interface - public :
46typename DGtal::DSSLengthEstimator<T>::Quantity
47DGtal::DSSLengthEstimator<T>::eval( const ConstIterator& itb,
48 const ConstIterator& ite, const double h ) const
52 if ( isEmpty(itb, ite) )
57 GreedySegmentation<DSSComputer> decomposition( itb, ite, computer );
59 typename GreedySegmentation<DSSComputer>::SegmentComputerIterator i = decomposition.begin();
60 const typename GreedySegmentation<DSSComputer>::SegmentComputerIterator end = decomposition.end();
64 for ( ; i != end; ++i )
66 Vector v( i->front() - i->back() );
67 val += v.norm(Vector::L_2);
69 if ( IsCirculator<ConstIterator>::value )
71 Vector v( decomposition.begin()->back() - i->front() );
72 val += v.norm(Vector::L_2);
83// ------------------------------------------------------------------------
87DGtal::DSSLengthEstimator<T>::selfDisplay ( std::ostream & out ) const
89 out << "[DSSLengthEstimator]";
93 out<< " not initialized";
96// ------------------------------------------------------------------------
100DGtal::DSSLengthEstimator<T>::isValid() const
107///////////////////////////////////////////////////////////////////////////////
108// Implementation of inline functions //
113DGtal::operator<< ( std::ostream & out,
114 const DSSLengthEstimator<T> & object )
116 object.selfDisplay( out );
121///////////////////////////////////////////////////////////////////////////////