34 #include "DGtal/helpers/StdDefs.h"
35 #include "DGtal/io/readers/VolReader.h"
36 #include "DGtal/io/DrawWithDisplay3DModifier.h"
37 #include "DGtal/io/viewers/Viewer3D.h"
38 #include "DGtal/io/Color.h"
39 #include "DGtal/io/colormaps/HueShadeColorMap.h"
40 #include "DGtal/images/ImageSelector.h"
41 #include "DGtal/images/imagesSetsUtils/SetFromImage.h"
42 #include "DGtal/shapes/implicit/ImplicitBall.h"
43 #include "DGtal/shapes/GaussDigitizer.h"
44 #include "DGtal/shapes/Shapes.h"
45 #include "DGtal/topology/DigitalSurface.h"
46 #include "DGtal/topology/ExplicitDigitalSurface.h"
47 #include "DGtal/topology/helpers/FrontierPredicate.h"
48 #include "DGtal/topology/helpers/BoundaryPredicate.h"
54 using namespace DGtal;
59 int main(
int argc,
char** argv )
68 EuclideanShape ball1( c1, radius1 );
75 EuclideanShape ball2( c2, radius2 );
82 std::cerr << std::endl;
87 label += shape2( *it ) ? 2 : 0;
88 image.setValue( *it, label );
89 std::cerr << (int)
image( *it );
91 std::cerr << std::endl;
95 trace.
beginBlock(
"Construct the Khalimsky space from the image domain." );
100 trace.
error() <<
"Error in the Khamisky space construction."<<std::endl;
109 MySurfelAdjacency surfAdj(
true );
119 FSurfelPredicate surfPredicate10(
K, image, 1, 0 );
120 Frontier frontier10 =
121 new FrontierContainer(
K, surfPredicate10, surfAdj, bel10 );
125 FSurfelPredicate surfPredicate20(
K, image, 2, 0 );
126 Frontier frontier20 =
127 new FrontierContainer(
K, surfPredicate20, surfAdj, bel20 );
131 BSurfelPredicate surfPredicate3(
K, image, 3 );
133 new BoundaryContainer(
K, surfPredicate3, surfAdj, bel32 );
139 QApplication application(argc,argv);
146 unsigned int nbSurfels10 = 0;
149 it = frontier10.begin(), it_end = frontier10.end();
150 it != it_end; ++it, ++nbSurfels10 )
153 unsigned int nbSurfels20 = 0;
156 it = frontier20.begin(), it_end = frontier20.end();
157 it != it_end; ++it, ++nbSurfels20 )
160 unsigned int nbSurfels3 = 0;
163 it = boundary3.begin(), it_end = boundary3.end();
164 it != it_end; ++it, ++nbSurfels3 )
166 trace.
info() <<
"nbSurfels10 = " << nbSurfels10
167 <<
", nbSurfels20 = " << nbSurfels20
168 <<
", nbSurfels3 = " << nbSurfels3 << std::endl;
169 viewer << Viewer3D<>::updateDisplay;
171 return application.exec();