67#include "DGtal/base/Common.h"
68#include "DGtal/base/CountedPtr.h"
69#include "DGtal/helpers/StdDefs.h"
70#include "DGtal/kernel/PointVector.h"
71#include "DGtal/graph/CUndirectedSimpleGraph.h"
72#include "DGtal/graph/BreadthFirstVisitor.h"
73#include "DGtal/topology/DigitalSetBoundary.h"
74#include "DGtal/topology/DigitalSurface.h"
75#include "DGtal/shapes/Shapes.h"
83int main(
int argc,
char** argv )
85 const double R = argc >= 2 ? atof( argv[ 1 ] ) : 13.0;
86 const unsigned int KN = argc >= 3 ? atoi( argv[ 2 ] ) : 6;
87 const int M = (int) ceil(
R + 2.0 );
90 <<
", " << KN <<
"-ring neighborhood" << std::endl;
91 typedef DigitalSetBoundary < KSpace, DigitalSet > DigitalSurfaceContainer;
92 typedef DigitalSurface < DigitalSurfaceContainer > DigSurface;
93 typedef BreadthFirstVisitor < DigSurface > BFSVisitor;
94 Point p1( -M, -M, -M );
97 K.
init( p1, p2,
true );
100 DigSurface dsurf(
new DigitalSurfaceContainer(
K, aSet ) );
101 trace.
info() <<
"[OK]" <<
" Sphere has " << dsurf.size() <<
" vertices/surfels"
106 std::map< SCell, RealPoint > v2n;
107 for (
auto v : dsurf )
111 BFSVisitor bfv( dsurf, v );
112 while( ! bfv.finished() )
114 auto node = bfv.current();
115 if ( KN < node.second )
break;
116 auto surfel = node.first;
119 nv[ k ] =
K.
sDirect( surfel, k ) ? 1.0 : -1.0;
130 const double area_true = 4.0 * M_PI *
R *
R;
131 double area_averaged = 0.0;
132 double area_corrected = 0.0;
133 for (
auto v : dsurf )
137 area_corrected += fabs( v2n[ v ][ k ] );
140 trace.
info() <<
"- true area = " << area_true << std::endl;
141 trace.
info() <<
"- corrected area = " << area_corrected << std::endl;
142 trace.
info() <<
"- averaged area = " << area_averaged << std::endl;
Aim: A wrapper class around a STL associative container for storing sets of digital points within som...
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.
Dimension sOrthDir(const SCell &s) const
Given a signed surfel [s], returns its orthogonal direction (ie, the coordinate where the surfel is c...
bool sDirect(const SCell &p, Dimension k) const
Return 'true' if the direct orientation of [p] along [k] is in the positive coordinate direction.
PointVector< dim, double, std::array< double, dim > > getNormalized() const
static Self zero
Static const for zero PointVector.
static void addNorm2Ball(TDigitalSet &aSet, const Point &aCenter, UnsignedInteger aRadius)
void beginBlock(const std::string &keyword="")
Z3i this namespace gathers the standard of types for 3D imagery.
HyperRectDomain< Space > Domain
DGtal is the top-level namespace which contains all DGtal functions and types.
DGtal::uint32_t Dimension