Example of curvature estimation based on Digital Circular Arc (DCA) estimator.
#include <iostream>
#include "DGtal/base/Common.h"
#include "DGtal/kernel/SpaceND.h"
#include "DGtal/kernel/domains/HyperRectDomain.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/estimation/MostCenteredMaximalSegmentEstimator.h"
#include "DGtal/geometry/curves/StabbingCircleComputer.h"
template <typename Shape, typename RealPoint>
bool
Shape & aShape,
const RealPoint& low, const RealPoint& up,
double h )
{
+ name ). c_str() );
if ( ! ok )
{
std::cerr << "[estimatorOnShapeDigitization]"
<< " error in creating KSpace." << std::endl;
}
else
try {
std::vector<Point> points;
std::vector<double> estimations;
{
SegmentComputer sc;
SCEstimator sce;
CurvatureEstimator estimator(sc, sce);
std::cout << "# open grid curve" << endl;
estimator.init( h, r.
begin(), r.
end() );
estimator.eval( r.
begin(), r.
end(), std::back_inserter(estimations) );
}
else
{
SegmentComputer sc;
SCEstimator sce;
CurvatureEstimator estimator(sc, sce);
std::cout << "# closed grid curve" << endl;
estimator.init( h, r.
c(), r.
c() );
estimator.eval( r.
c(), r.
c(), std::back_inserter(estimations) );
}
std::cout << "# idx kappa" << endl;
unsigned int i = 0;
for ( ClassicIterator it = r.
begin(), ite = r.
end();
it != ite; ++it, ++i )
{
std::cout << i << " " << estimations.at(i) << std::endl;
}
}
{
std::cerr << "[estimatorOnShapeDigitization]"
<< " error in finding a bel." << std::endl;
ok = false;
}
return ok;
}
{
trace.
info() <<
" Curvature estimation using shape to digitize: flower" << std::endl
<< " with Grid step: 0.01" << std::endl;
double h = 0.01;
string shapeName = "flower";
bool res = true;
if (shapeName == "flower")
{
RealPoint::diagonal(-10),
RealPoint::diagonal(10),
h);
}
else if (shapeName == "ellipse")
{
RealPoint::diagonal(-10),
RealPoint::diagonal(10),
h);
}
else if (shapeName == "ball")
{
RealPoint::diagonal(-10),
RealPoint::diagonal(10),
h);
}
return res;
}