33 #include "DGtal/base/Common.h"
36 #include "DGtal/shapes/parametric/Flower2D.h"
37 #include "DGtal/shapes/GaussDigitizer.h"
38 #include "DGtal/topology/LightImplicitDigitalSurface.h"
39 #include "DGtal/topology/DigitalSurface.h"
40 #include "DGtal/graph/DepthFirstVisitor.h"
41 #include "DGtal/graph/GraphVisitorRange.h"
42 #include "DGtal/images/ImageHelper.h"
43 #include "DGtal/images/ImageSelector.h"
46 #include "DGtal/geometry/surfaces/estimation/IIGeometricFunctors.h"
47 #include "DGtal/geometry/surfaces/estimation/IntegralInvariantVolumeEstimator.h"
50 #include "DGtal/io/boards/Board2D.h"
51 #include "DGtal/io/colormaps/GradientColorMap.h"
55 using namespace DGtal;
59 int main(
int argc,
char** argv )
63 for (
int i = 0; i < argc; ++i )
75 MyShape shape( 0, 0, 20.00000124, 10.0000123, 6, 3.0 );
77 MyGaussDigitizer digShape;
78 digShape.attach( shape );
85 trace.
error() <<
"Error in the Khamisky space construction." << std::endl;
95 LightImplicitDigSurface LightImplDigSurf( KSpaceShape, digShape, SAdj, bel );
102 VisitorRange range(
new Visitor( digSurf, *digSurf.
begin() ) );
103 SurfelConstIterator abegin = range.begin();
104 SurfelConstIterator aend = range.end();
108 double re_convolution_kernel = 4.5;
114 MyIICurvatureFunctor curvatureFunctor;
115 curvatureFunctor.init( h, re_convolution_kernel );
117 MyIICurvatureEstimator curvatureEstimator( curvatureFunctor );
118 curvatureEstimator.attach( KSpaceShape, digShape );
119 curvatureEstimator.setParams( re_convolution_kernel/h );
120 curvatureEstimator.init( h, abegin, aend );
122 std::vector< Value > results;
123 std::back_insert_iterator< std::vector< Value > > resultsIt( results );
124 curvatureEstimator.eval( abegin, aend, resultsIt );
129 Value max = std::numeric_limits < Value >::min();
130 for (
unsigned int i = 0; i < results.size(); ++i )
132 if ( results[ i ] < min )
136 else if ( results[ i ] >
max )
142 VisitorRange range2(
new Visitor( digSurf, *digSurf.
begin() ) );
143 abegin = range2.begin();
146 Gradient cmap_grad( min,
max );
147 cmap_grad.addColor(
Color( 50, 50, 255 ) );
148 cmap_grad.addColor(
Color( 255, 0, 0 ) );
149 cmap_grad.addColor(
Color( 255, 255, 10 ) );
151 board <<
SetMode( (*abegin).className(),
"Paving" );
152 std::string specificStyle = (*abegin).className() +
"/Paving";
153 for (
unsigned int i = 0; i < results.size(); ++i )
160 board.
saveSVG (
"example-integralinvariant2D.svg" );
Aim: This class specializes a 'Board' class so as to display DGtal objects more naturally (with <<)....
Structure representing an RGB triple with alpha component.
Aim: This class is useful to perform a depth-first exploration of a graph given a starting point or s...
Aim: Represents a set of n-1-cells in a nD space, together with adjacency relation between these cell...
ConstIterator begin() const
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...
Aim: This class template may be used to (linearly) convert scalar values in a given range into a colo...
Aim: Transforms a graph visitor into a single pass input range.
const ConstIterator & end() const
const ConstIterator & begin() const
const Point & lowerBound() const
const Point & upperBound() const
Aim: implements association bewteen points lying in a digital domain and values.
Aim: This class implement an Integral Invariant estimator which computes for each surfel the volume o...
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.
SCell sIndirectIncident(const SCell &p, Dimension k) const
Return the indirect incident cell of [p] along [k] (the incident cell along [k] whose sign is negativ...
DirIterator sOrthDirs(const SCell &p) const
Given a signed cell [p], returns an iterator to iterate over each coordinate the cell does not span.
Aim: A model of CDigitalSurfaceContainer which defines the digital surface as the boundary of an impl...
static Self diagonal(Component val=1)
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="")
void saveSVG(const char *filename, PageSize size=Board::BoundingBox, double margin=10.0) const
int main(int argc, char **argv)
DigitalSurface< MyDigitalSurfaceContainer > MyDigitalSurface
MyDigitalSurface::ConstIterator ConstIterator
BreadthFirstVisitor< MyDigitalSurface > Visitor
DGtal is the top-level namespace which contains all DGtal functions and types.
void imageFromRangeAndValue(const It &itb, const It &ite, Im &aImg, const typename Im::Value &aValue=0)
Custom style class redefining the pen color and the fill color. You may use Board2D::Color::None for ...
Modifier class in a Board2D stream. Useful to choose your own mode for a given class....
Represents a signed cell in a cellular grid space by its Khalimsky coordinates and a boolean value.
Aim: A functor Real -> Real that returns the 2d curvature by transforming the given volume....
ImageContainerBySTLVector< Domain, Value > Image