DGtal  1.4.beta
testBinomialConvolver.cpp File Reference
#include <iostream>
#include "DGtal/base/Common.h"
#include "DGtal/kernel/PointVector.h"
#include "DGtal/geometry/curves/BinomialConvolver.h"
#include "DGtal/geometry/curves/estimation/CCurveLocalGeometricEstimator.h"
Include dependency graph for testBinomialConvolver.cpp:

Go to the source code of this file.

Functions

bool testBinomialConvolver ()
 
int main (int argc, char **argv)
 

Detailed Description

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Author
Jacques-Olivier Lachaud (jacqu.nosp@m.es-o.nosp@m.livie.nosp@m.r.la.nosp@m.chaud.nosp@m.@uni.nosp@m.v-sav.nosp@m.oie..nosp@m.fr ) Laboratory of Mathematics (CNRS, UMR 5127), University of Savoie, France
Date
2011/07/06

Functions for testing class Signal.

This file is part of the DGtal library.

Definition in file testBinomialConvolver.cpp.

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 113 of file testBinomialConvolver.cpp.

114 {
115  trace.beginBlock ( "Testing class BinomialConvolver" );
116  trace.info() << "Args:";
117  for ( int i = 0; i < argc; ++i )
118  trace.info() << " " << argv[ i ];
119  trace.info() << endl;
120 
121  bool res = testBinomialConvolver(); // && ... other tests
122  trace.emphase() << ( res ? "Passed." : "Error." ) << endl;
123  trace.endBlock();
124  return res ? 0 : 1;
125 }
void beginBlock(const std::string &keyword="")
std::ostream & emphase()
std::ostream & info()
double endBlock()
Trace trace
Definition: Common.h:153
bool testBinomialConvolver()

References DGtal::Trace::beginBlock(), DGtal::Trace::emphase(), DGtal::Trace::endBlock(), DGtal::Trace::info(), testBinomialConvolver(), and DGtal::trace.

◆ testBinomialConvolver()

bool testBinomialConvolver ( )

Example of a test. To be completed.

Definition at line 48 of file testBinomialConvolver.cpp.

49 {
50  trace.beginBlock ( "Testing block ..." );
52  std::vector< RealPoint > points;
53  points.push_back( RealPoint( { 0.0, 0.0 } ) );
54  points.push_back( RealPoint( { 1.0, 0.0 } ) );
55  points.push_back( RealPoint( { 2.0, 0.0 } ) );
56  points.push_back( RealPoint( { 2.0, 1.0 } ) );
57  points.push_back( RealPoint( { 2.0, 2.0 } ) );
58  points.push_back( RealPoint( { 1.0, 2.0 } ) );
59  points.push_back( RealPoint( { 0.0, 2.0 } ) );
60  points.push_back( RealPoint( { 0.0, 1.0 } ) );
61 
62  typedef std::vector< RealPoint >::const_iterator ConstIteratorOnPoints;
63  typedef BinomialConvolver<ConstIteratorOnPoints, double> MyBinomialConvolver;
64 
65  for ( unsigned int n = 1; n < 10; ++n )
66  {
67  trace.info() << "Binomial convolver n=" << n << std::endl;
68  MyBinomialConvolver bcc( n );
69  bcc.init( 1.0, points.begin(), points.end(), true );
70  for ( unsigned int i = 0; i < 8; ++i )
71  std::cout << i
72  << " " << bcc.x( i ).first
73  << " " << bcc.x( i ).second
74  << " " << bcc.tangent( i ).first
75  << " " << bcc.tangent( i ).second
76  << " " << bcc.curvature( i )
77  << std::endl;
78  }
79  unsigned int n = MyBinomialConvolver::suggestedSize( 1.0, points.begin(), points.end() );
80  trace.info() << "Binomial convolver suggested n="
81  << n
82  << std::endl;
83 
85  TangentBCFct;
87  CurvatureBCFct;
92  BCTangentEstimator tgtEstimator;
93  BCCurvatureEstimator curvEstimator;
94 
95  tgtEstimator.init( 1.0, points.begin(), points.end(), true );
96  curvEstimator.init( 1.0, points.begin(), points.end(), true );
97  for ( ConstIteratorOnPoints it = points.begin(), it_end = points.end();
98  it != it_end; ++it )
99  {
100  std::cout << *it
101  << " " << tgtEstimator.eval( it )
102  << " " << curvEstimator.eval( it )
103  << std::endl;
104  }
105  trace.endBlock();
106 
107  return true;
108 }
Aim: This class encapsulates a BinomialConvolver and a functor on BinomialConvolver so as to be a mod...
Aim: This class represents a 2D contour convolved by some binomial. It computes first and second orde...
Aim: This class is a functor for getting the curvature of a binomial convolver.
Aim: This class is a functor for getting the tangent vector of a binomial convolver.
Aim: This concept describes an object that can process a range so as to return one estimated quantity...
PointVector< 3, double > RealPoint

References DGtal::Trace::beginBlock(), DGtal::Trace::endBlock(), DGtal::Trace::info(), and DGtal::trace.

Referenced by main().