DGtal 1.3.0
Loading...
Searching...
No Matches
testEstimatorComparator.cpp
Go to the documentation of this file.
1
33#include <iostream>
34#include "DGtal/base/Common.h"
35
36#include "DGtal/shapes/Shapes.h"
37#include "DGtal/shapes/ShapeFactory.h"
38
39#include "DGtal/geometry/curves/estimation/TrueLocalEstimatorOnPoints.h"
40
41#include "DGtal/geometry/curves/estimation/ParametricShapeCurvatureFunctor.h"
42#include "DGtal/geometry/curves/estimation/ParametricShapeTangentFunctor.h"
43#include "DGtal/geometry/curves/estimation/ParametricShapeArcLengthFunctor.h"
44#include "DGtal/geometry/curves/estimation/MostCenteredMaximalSegmentEstimator.h"
45#include "DGtal/geometry/curves/ArithmeticalDSSComputer.h"
46
47#include "DGtal/kernel/SpaceND.h"
48#include "DGtal/kernel/domains/HyperRectDomain.h"
49#include "DGtal/kernel/sets/DigitalSetSelector.h"
50#include "DGtal/topology/KhalimskySpaceND.h"
51#include "DGtal/topology/SurfelAdjacency.h"
52#include "DGtal/topology/SurfelNeighborhood.h"
53
54#include "DGtal/shapes/GaussDigitizer.h"
55#include "DGtal/geometry/curves/GridCurve.h"
56
57#include "DGtal/geometry/curves/estimation/CompareLocalEstimators.h"
58
59
60#include "ConfigTest.h"
61
63
64using namespace std;
65using namespace DGtal;
66
67
68template <typename Shape>
69bool testCompareEstimator(const std::string &name, const Shape & aShape, double h)
70{
71 using namespace Z2i;
72
73 trace.beginBlock ( ( "Testing CompareEstimator on digitization of "
74 + name ). c_str() );
75
76 // Creates a digitizer on the window (xLow, xUp).
78 RealPoint xLow( -10.0, -10.0 );
79 RealPoint xUp( 10.0, 10.0 );
81 dig.attach( aShape ); // attaches the shape.
82 dig.init( xLow, xUp, h );
83
84 // The domain size is given by the digitizer according to the window
85 // and the step.
86 Domain domain = dig.getDomain();
87
88 // Create cellular space
89 KSpace K;
90 bool ok = K.init( dig.getLowerBound(), dig.getUpperBound(), true );
91 if ( ! ok )
92 {
93 std::cerr << "[testCompareEstimators]"
94 << " error in creating KSpace." << std::endl;
95 }
96 else
97 try {
98 // Extracts shape boundary
100 SCell bel = Surfaces<KSpace>::findABel( K, dig, 10000 );
101 // Getting the consecutive surfels of the 2D boundary
102 std::vector<Point> points;
103 Surfaces<KSpace>::track2DBoundaryPoints( points, K, SAdj, dig, bel );
104 // Create GridCurve
105 GridCurve<KSpace> gridcurve;
106 gridcurve.initFromVector( points );
107 typedef GridCurve<KhalimskySpaceND<2> >::PointsRange Range;
108 typedef Range::ConstIterator ConstIteratorOnPoints;
109 Range r = gridcurve.getPointsRange();//building range
110
111 unsigned int nb = 0;
112 unsigned int nbok = 0;
113 //curvature
116 TrueCurvature curvatureEstimator;
117 TrueCurvature curvatureEstimatorBis;
118 curvatureEstimator.attach( aShape );
119 curvatureEstimatorBis.attach( aShape );
120
122
123 trace.info()<< "True curvature comparison at "<< *r.begin() << " = "
124 << Comparator::compare(curvatureEstimator,curvatureEstimatorBis, r.begin(), h)
125 << std::endl;
126
127 typename Comparator::OutputStatistic error =
128 Comparator::compare(curvatureEstimator, curvatureEstimatorBis,
129 r.begin(), r.end(), h);
130
131 trace.info() << "Nb samples= "<< error.samples()<<std::endl;
132 trace.info() << "Error mean= "<< error.mean()<<std::endl;
133 trace.info() << "Error max= "<< error.max()<<std::endl;
134 nbok += ( ( ( (unsigned int)error.samples() ) == r.size())
135 && (error.max() == 0) )
136 ? 1 : 0;
137 nb++;
138 trace.info() << nbok << "/" << nb << std::endl;
139
140 //tangents
143
148 MSTangentEstimator;
149
151 Functor f;
152
153 TrueTangent tang1;
154 MSTangentEstimator tang2(sc, f);
155
156 tang1.attach( aShape );
157 tang2.init( r.begin(), r.end() );
158
160
161 trace.info()<< "Tangent comparison at "<< *r.begin() << " = "
162 << ComparatorTan::compareVectors( tang1, tang2, r.begin(), h)
163 << std::endl;
164
165 typename ComparatorTan::OutputVectorStatistic error2
166 = ComparatorTan::compareVectors(tang1, tang2, r.begin(), r.end(), h);
167
168 trace.info()<< "Nb samples= "<< error2.samples()<<std::endl;
169 trace.info()<< "Error mean= "<< error2.mean()<<std::endl;
170 trace.info()<< "Error max= "<< error2.max()<<std::endl;
171 nbok += (error.samples() == r.size())?1:0;
172 nb++;
173 trace.info() << nbok << "/" << nb << std::endl;
174 ok += (nb == nbok);
175
176 }
177 catch ( InputException& e )
178 {
179 std::cerr << "[testCompareEstimator]"
180 << " error in finding a bel." << std::endl;
181 ok = false;
182 }
183 trace.emphase() << ( ok ? "Passed." : "Error." ) << endl;
184 trace.endBlock();
185 return ok;
186
187}
188
189
191// Standard services - public :
192
193int main( int argc, char** argv )
194{
195 trace.beginBlock ( "Testing class CompareLocalEstimator" );
196 trace.info() << "Args:";
197 for ( int i = 0; i < argc; ++i )
198 trace.info() << " " << argv[ i ];
199 trace.info() << endl;
200
201 typedef Flower2D< Z2i::Space > MyFlower;
202 MyFlower flower( 0.5, -2.3, 5.0, 0.7, 6, 0.3 );
203 bool res = testCompareEstimator<MyFlower>("Flower", flower, 0.25);
204 return res ? 0 : 1;
205
206}
207// //
Aim: This class is a wrapper around ArithmeticalDSS that is devoted to the dynamic recognition of dig...
Aim: Model of the concept StarShaped represents any flower with k-petals in the plane.
Definition: Flower2D.h:65
Aim: A class for computing the Gauss digitization of some Euclidean shape, i.e. its intersection with...
const Point & getUpperBound() const
void attach(ConstAlias< EuclideanShape > shape)
const Point & getLowerBound() const
void init(const RealPoint &xLow, const RealPoint &xUp, typename RealVector::Component gridStep)
Domain getDomain() const
Aim: describes, in a cellular space of dimension n, a closed or open sequence of signed d-cells (or d...
Definition: GridCurve.h:173
PointsRange getPointsRange() const
Definition: GridCurve.h:426
bool initFromVector(const std::vector< Point > &aVectorOfPoints)
Aim: This class is a model of CCellularGridSpaceND. It represents the cubical grid as a cell complex,...
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 model of CLocalCurveGeometricEstimator that assigns to each element of a (sub)range a quantity...
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: Implements basic operations that will be used in Point and Vector classes.
Definition: PointVector.h:593
Aim: model of CBidirectionalRangeFromPoint that adapts any range of elements bounded by two iterators...
static void track2DBoundaryPoints(std::vector< Point > &aVectorOfPoints, const KSpace &K, const SurfelAdjacency< KSpace::dimension > &surfel_adj, const PointPredicate &pp, const SCell &start_surfel)
static SCell findABel(const KSpace &K, const PointPredicate &pp, unsigned int nbtries=1000)
Aim: Represent adjacencies between surfel elements, telling if it follows an interior to exterior ord...
void beginBlock(const std::string &keyword="")
std::ostream & emphase()
std::ostream & info()
double endBlock()
Aim: Computes the true quantity to each element of a range associated to a parametric shape.
void attach(const ParametricShape &aShape)
DGtal is the top-level namespace which contains all DGtal functions and types.
Trace trace
Definition: Common.h:154
STL namespace.
Aim: Functor to compare two local geometric estimators.
Represents a signed cell in a cellular grid space by its Khalimsky coordinates and a boolean value.
ArithmeticalDSSComputer< std::vector< Z2i::Point >::const_iterator, int, 4 > SegmentComputer
Z2i::RealPoint RealPoint
int main()
Definition: testBits.cpp:56
InHalfPlaneBySimple3x3Matrix< Point, double > Functor
KSpace K
bool testCompareEstimator(const std::string &name, const Shape &aShape, double h)
Domain domain