DGtal  1.2.0
Functions
testTrueLocalEstimator.cpp File Reference
#include <iostream>
#include "DGtal/base/Common.h"
#include "DGtal/kernel/SpaceND.h"
#include "DGtal/kernel/domains/HyperRectDomain.h"
#include "DGtal/kernel/sets/DigitalSetSelector.h"
#include "DGtal/topology/KhalimskySpaceND.h"
#include "DGtal/topology/SurfelAdjacency.h"
#include "DGtal/topology/SurfelNeighborhood.h"
#include "DGtal/shapes/Shapes.h"
#include "DGtal/shapes/ShapeFactory.h"
#include "DGtal/shapes/GaussDigitizer.h"
#include "DGtal/geometry/curves/GridCurve.h"
#include "DGtal/geometry/curves/ArithmeticalDSSComputer.h"
#include "DGtal/geometry/curves/estimation/CCurveLocalGeometricEstimator.h"
#include "DGtal/geometry/curves/estimation/TrueLocalEstimatorOnPoints.h"
#include "DGtal/geometry/curves/estimation/TrueGlobalEstimatorOnPoints.h"
#include "DGtal/geometry/curves/estimation/ParametricShapeCurvatureFunctor.h"
#include "DGtal/geometry/curves/estimation/ParametricShapeTangentFunctor.h"
#include "DGtal/geometry/curves/estimation/ParametricShapeArcLengthFunctor.h"
#include "DGtal/geometry/curves/estimation/MostCenteredMaximalSegmentEstimator.h"
#include "DGtal/geometry/curves/estimation/CompareLocalEstimators.h"
#include "ConfigTest.h"
Include dependency graph for testTrueLocalEstimator.cpp:

Go to the source code of this file.

Functions

bool testTrueLocalEstimator (const std::string &filename)
 
template<typename Shape >
bool testTrueLocalEstimatorOnShapeDigitization (const string &name, Shape &aShape, double h)
 
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
David Coeurjolly (david.nosp@m..coe.nosp@m.urjol.nosp@m.ly@l.nosp@m.iris..nosp@m.cnrs.nosp@m..fr ) Laboratoire d'InfoRmatique en Image et Systèmes d'information - LIRIS (CNRS, UMR 5205), CNRS, France
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 5807), University of Savoie, France
Date
2011/06/30

Functions for testing class TrueLocalEstimator.

This file is part of the DGtal library.

Definition in file testTrueLocalEstimator.cpp.

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 201 of file testTrueLocalEstimator.cpp.

202 {
203  trace.beginBlock ( "Testing class TrueLocalEstimator" );
204  trace.info() << "Args:";
205  for ( int i = 0; i < argc; ++i )
206  trace.info() << " " << argv[ i ];
207  trace.info() << endl;
208 
209  std::string sinus2D4 = testPath + "samples/sinus2D4.dat";
210 
211  bool res = testTrueLocalEstimator(sinus2D4); // && ... other tests
212  trace.emphase() << ( res ? "Passed." : "Error." ) << endl;
213  trace.endBlock();
214 
215  typedef Ellipse2D< Z2i::Space > MyEllipse;
216  MyEllipse ellipse( 1.2, 0.1, 4.0, 3.0, 0.3 );
217  res = res &&
218  testTrueLocalEstimatorOnShapeDigitization<MyEllipse>
219  ( "Ellipse-4-3-0.3-s1", ellipse, 1 );
220  res = res &&
221  testTrueLocalEstimatorOnShapeDigitization<MyEllipse>
222  ( "Ellipse-4-3-0.3-s0.5", ellipse, 0.5 );
223 
224  typedef Flower2D< Z2i::Space > MyFlower;
225  MyFlower flower( 0.5, -2.3, 5.0, 0.7, 6, 0.3 );
226  res = res &&
227  testTrueLocalEstimatorOnShapeDigitization<MyFlower>
228  ( "Flower-5-0.3-6-0.3-s1", flower, 1 );
229  res = res &&
230  testTrueLocalEstimatorOnShapeDigitization<MyFlower>
231  ( "Flower-5-0.3-6-0.3-s0.25", flower, 0.25 );
232 
233  return res ? 0 : 1;
234 }
Aim: Model of the concept StarShaped represents any ellipse in the plane.
Definition: Ellipse2D.h:65
Aim: Model of the concept StarShaped represents any flower with k-petals in the plane.
Definition: Flower2D.h:65
void beginBlock(const std::string &keyword="")
std::ostream & emphase()
std::ostream & info()
double endBlock()
Trace trace
Definition: Common.h:154
bool testTrueLocalEstimator(const std::string &filename)

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

◆ testTrueLocalEstimator()

bool testTrueLocalEstimator ( const std::string &  filename)

Example of a test. To be completed.

Definition at line 72 of file testTrueLocalEstimator.cpp.

73 {
74  trace.info() << "Reading GridCurve " << endl;
75  ifstream instream; // input stream
76  instream.open (filename.c_str(), ifstream::in);
77  typedef KhalimskySpaceND<2> Kspace; //space
79  c.initFromVectorStream(instream); //building grid curve
81  Range r = c.getPointsRange();//building range
82 
83  typedef Ball2D<Z2i::Space> Shape;
84  typedef GridCurve<KhalimskySpaceND<2> >::PointsRange Range;
85  typedef Range::ConstIterator ConstIteratorOnPoints;
89 
90  Shape ball(Z2i::Point(0,0), 30);
91 
92 
96 
99  TrueCurvatureEstimator curvatureEstimator;
100  TrueTangentEstimator tangentEstimator;
101  TrueLengthEstimator lengthEstimator;
102 
103  curvatureEstimator.attach( ball );
104  tangentEstimator.attach( ball );
105  lengthEstimator.attach ( ball );
106 
107  ConstIteratorOnPoints it = r.begin();
108  ConstIteratorOnPoints it2 = it+15;
109 
110  trace.info() << "Current point = " << *it << std::endl;
111  trace.info() << "Current point+15 = " << *it2 << std::endl;
112  // TODO: All these estimations consider projections of points from grid curve c on ball.
113  // These are not estimations on the grid curve c. Not sure that make sense.
114  trace.info() << "Eval curvature (begin, h=1) = " << curvatureEstimator.eval(it2, 1.) << std::endl;
115  trace.info() << "Eval tangent (begin, h=1) = " << tangentEstimator.eval(it2, 1.) << std::endl;
116  trace.info() << "Eval length (h=1) = " << lengthEstimator.eval(it, it2, 1.) << std::endl;
117  trace.info() << "Eval ball length (h=1) = " << lengthEstimator.eval() << std::endl;
118 
119  return true;
120 }
Aim: Model of the concept StarShaped represents any circle in the plane.
Definition: Ball2D.h:61
Aim: model of CConstBidirectionalRange that adapts any range of elements bounded by two iterators [it...
Aim: describes, in a cellular space of dimension n, a closed or open sequence of signed d-cells (or d...
Definition: GridCurve.h:173
bool initFromVectorStream(std::istream &in)
Aim: This class is a model of CCellularGridSpaceND. It represents the cubical grid as a cell complex,...
Aim: implements a functor that estimates the arc length of a paramtric curve.
Aim: implements a functor that computes the curvature at a given point of a parametric shape.
Aim: implements a functor that computes the tangent vector at a given point of a parametric shape.
Aim: model of CBidirectionalRangeFromPoint that adapts any range of elements bounded by two iterators...
Aim: Computes the true quantity associated to a parametric shape or to a subrange associated to a par...
Aim: Computes the true quantity to each element of a range associated to a parametric shape.
Aim: This concept describes an object that can process a range so as to return one estimated quantity...
Astroid2D< Space > Shape

References DGtal::Trace::info(), DGtal::GridCurve< TKSpace >::initFromVectorStream(), and DGtal::trace.

Referenced by main().

◆ testTrueLocalEstimatorOnShapeDigitization()

template<typename Shape >
bool testTrueLocalEstimatorOnShapeDigitization ( const string &  name,
Shape aShape,
double  h 
)

Definition at line 124 of file testTrueLocalEstimator.cpp.

126 {
127  using namespace Z2i;
128 
129  trace.beginBlock ( ( "Testing TrueLocalEstimator on digitization of "
130  + name ). c_str() );
131 
132  // Creates a digitizer on the window (xLow, xUp).
133  typedef Space::RealPoint RealPoint;
134  RealPoint xLow( -10.0, -10.0 );
135  RealPoint xUp( 10.0, 10.0 );
137  dig.attach( aShape ); // attaches the shape.
138  dig.init( xLow, xUp, h );
139 
140  // The domain size is given by the digitizer according to the window
141  // and the step.
142  Domain domain = dig.getDomain();
143 
144  // Create cellular space
145  KSpace K;
146  bool ok = K.init( dig.getLowerBound(), dig.getUpperBound(), true );
147  if ( ! ok )
148  {
149  std::cerr << "[testTrueLocalEstimatorOnShapeDigitization]"
150  << " error in creating KSpace." << std::endl;
151  }
152  else
153  {
154  try
155  {
156  // Extracts shape boundary
158  SCell bel = Surfaces<KSpace>::findABel( K, dig, 10000 );
159  // Getting the consecutive surfels of the 2D boundary
160  std::vector<Point> points;
161  Surfaces<KSpace>::track2DBoundaryPoints( points, K, SAdj, dig, bel );
162  // Create GridCurve
163  GridCurve<KSpace> gridcurve;
164  gridcurve.initFromVector( points );
165 
166  typedef GridCurve<KhalimskySpaceND<2> >::PointsRange Range;
167  typedef Range::ConstIterator ConstIteratorOnPoints;
169 
171  Range r = gridcurve.getPointsRange();//building range
172  curvatureEstimator.attach( aShape );
173 
174  std::cout << "# idx x y kappa" << endl;
175  unsigned int i = 0;
176  for ( ConstIteratorOnPoints it = r.begin(), ite = r.end();
177  it != ite; ++it, ++i )
178  {
179  const RealPoint& x = *it;
180  const double kappa = curvatureEstimator.eval( it, h );
181  std::cout << i << " " << x[0] << " " << x[1]
182  << " " << kappa << std::endl;
183  }
184  }
185  catch ( InputException& e )
186  {
187  std::cerr << "[testTrueLocalEstimatorOnShapeDigitization]"
188  << " error in finding a bel." << std::endl;
189  ok = false;
190  }
191  }
192  trace.emphase() << ( ok ? "Passed." : "Error." ) << endl;
193  trace.endBlock();
194  return ok;
195 }
Aim: A class for computing the Gauss digitization of some Euclidean shape, i.e. its intersection with...
const Point & getLowerBound() const
void attach(ConstAlias< EuclideanShape > shape)
const Point & getUpperBound() const
void init(const RealPoint &xLow, const RealPoint &xUp, typename RealVector::Component gridStep)
Domain getDomain() const
PointsRange getPointsRange() const
Definition: GridCurve.h:426
bool initFromVector(const std::vector< Point > &aVectorOfPoints)
bool init(const Point &lower, const Point &upper, bool isClosed)
Specifies the upper and lower bounds for the maximal cells in this space.
Aim: A utility class for constructing surfaces (i.e. set of (n-1)-cells).
Definition: Surfaces.h:79
Quantity eval(const ConstIterator &it, const double h=1.) const
void attach(const ParametricShape &aShape)
Represents a signed cell in a cellular grid space by its Khalimsky coordinates and a boolean value.
Z2i::RealPoint RealPoint
KSpace K
Domain domain

References DGtal::TrueLocalEstimatorOnPoints< TConstIteratorOnPoints, TParametricShape, TParametricShapeFunctor >::attach(), DGtal::GaussDigitizer< TSpace, TEuclideanShape >::attach(), DGtal::Trace::beginBlock(), domain, DGtal::Trace::emphase(), DGtal::Trace::endBlock(), DGtal::TrueLocalEstimatorOnPoints< TConstIteratorOnPoints, TParametricShape, TParametricShapeFunctor >::eval(), DGtal::GaussDigitizer< TSpace, TEuclideanShape >::getDomain(), DGtal::GaussDigitizer< TSpace, TEuclideanShape >::getLowerBound(), DGtal::GridCurve< TKSpace >::getPointsRange(), DGtal::GaussDigitizer< TSpace, TEuclideanShape >::getUpperBound(), DGtal::KhalimskySpaceND< dim, TInteger >::init(), DGtal::GaussDigitizer< TSpace, TEuclideanShape >::init(), DGtal::GridCurve< TKSpace >::initFromVector(), K, and DGtal::trace.