34 #include "DGtal/base/Common.h"
36 #include "DGtal/shapes/Shapes.h"
37 #include "DGtal/shapes/ShapeFactory.h"
39 #include "DGtal/geometry/curves/estimation/TrueLocalEstimatorOnPoints.h"
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"
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"
54 #include "DGtal/shapes/GaussDigitizer.h"
55 #include "DGtal/geometry/curves/GridCurve.h"
57 #include "DGtal/geometry/curves/estimation/CompareLocalEstimators.h"
60 #include "ConfigTest.h"
65 using namespace DGtal;
68 template <
typename Shape>
81 dig.
init( xLow, xUp, h );
92 std::cerr <<
"[testCompareEstimators]"
93 <<
" error in creating KSpace." << std::endl;
101 std::vector<Point> points;
111 unsigned int nbok = 0;
115 TrueCurvature curvatureEstimator;
116 TrueCurvature curvatureEstimatorBis;
117 curvatureEstimator.
attach( aShape );
118 curvatureEstimatorBis.attach( aShape );
122 trace.
info()<<
"True curvature comparison at "<< *r.begin() <<
" = "
126 typename Comparator::OutputStatistic error =
128 r.begin(), r.end(), h);
130 trace.
info() <<
"Nb samples= "<< error.samples()<<std::endl;
131 trace.
info() <<
"Error mean= "<< error.mean()<<std::endl;
132 trace.
info() <<
"Error max= "<< error.max()<<std::endl;
133 nbok += ( ( ( (
unsigned int)error.samples() ) == r.size())
134 && (error.max() == 0) )
137 trace.
info() << nbok <<
"/" << nb << std::endl;
153 MSTangentEstimator tang2(sc, f);
155 tang1.attach( aShape );
156 tang2.init( r.begin(), r.end() );
160 trace.
info()<<
"Tangent comparison at "<< *r.begin() <<
" = "
161 << ComparatorTan::compareVectors( tang1, tang2, r.begin(), h)
164 typename ComparatorTan::OutputVectorStatistic error2
165 = ComparatorTan::compareVectors(tang1, tang2, r.begin(), r.end(), h);
167 trace.
info()<<
"Nb samples= "<< error2.samples()<<std::endl;
168 trace.
info()<<
"Error mean= "<< error2.mean()<<std::endl;
169 trace.
info()<<
"Error max= "<< error2.max()<<std::endl;
170 nbok += (error.samples() == r.size())?1:0;
172 trace.
info() << nbok <<
"/" << nb << std::endl;
178 std::cerr <<
"[testCompareEstimator]"
179 <<
" error in finding a bel." << std::endl;
182 trace.
emphase() << ( ok ?
"Passed." :
"Error." ) << endl;
192 int main(
int argc,
char** argv )
196 for (
int i = 0; i < argc; ++i )
201 MyFlower flower( 0.5, -2.3, 5.0, 0.7, 6, 0.3 );
202 bool res = testCompareEstimator<MyFlower>(
"Flower", flower, 0.25);
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.
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)
Aim: describes, in a cellular space of dimension n, a closed or open sequence of signed d-cells (or d...
PointsRange getPointsRange() const
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: model of CBidirectionalRangeFromPoint that adapts any range of elements bounded by two iterators...
TConstIterator ConstIterator
Aim: A utility class for constructing surfaces (i.e. set of (n-1)-cells).
void beginBlock(const std::string &keyword="")
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.
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
InHalfPlaneBySimple3x3Matrix< Point, double > Functor
int main(int argc, char **argv)
bool testCompareEstimator(const std::string &name, const Shape &aShape, double h)
bool compare(const Range1 &pts, const Range2 &groundTruth)