Frontiers and boundary of two intersecting balls. The first ball is labelled 1 (red), the second 2 (yellow), their intersection 3 (orange). The frontier between 1 and 0 is displayed in red, the frontier between 2 and 0 is displayed in yellow, the boundary of region 3 is displayed in orange.
#include <iostream>
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/io/readers/VolReader.h"
#include "DGtal/io/DrawWithDisplay3DModifier.h"
#include "DGtal/io/viewers/Viewer3D.h"
#include "DGtal/io/Color.h"
#include "DGtal/io/colormaps/HueShadeColorMap.h"
#include "DGtal/images/ImageSelector.h"
#include "DGtal/images/imagesSetsUtils/SetFromImage.h"
#include "DGtal/shapes/implicit/ImplicitBall.h"
#include "DGtal/shapes/GaussDigitizer.h"
#include "DGtal/shapes/Shapes.h"
#include "DGtal/topology/DigitalSurface.h"
#include "DGtal/topology/ExplicitDigitalSurface.h"
#include "DGtal/topology/helpers/FrontierPredicate.h"
#include "DGtal/topology/helpers/BoundaryPredicate.h"
using namespace std;
using namespace Z3i;
int main(
int argc,
char** argv )
{
typedef ImplicitBall<Space> EuclideanShape;
typedef GaussDigitizer<Space,EuclideanShape> DigitalShape;
typedef ImageContainerBySTLVector<Domain,DGtal::uint8_t>
Image;
int radius1 = 6;
EuclideanShape ball1( c1, radius1 );
DigitalShape shape1;
shape1.attach( ball1 );
shape1.init(
RealPoint( -10.0, -10.0, -10.0 ),
int radius2 = 5;
EuclideanShape ball2( c2, radius2 );
DigitalShape shape2;
shape2.attach( ball2 );
shape2.init(
RealPoint( -10.0, -10.0, -10.0 ),
std::cerr << std::endl;
it != it_end; ++it )
{
label += shape2( *it ) ? 2 : 0;
image.setValue( *it, label );
std::cerr << (int)
image( *it );
}
std::cerr << std::endl;
trace.
beginBlock(
"Construct the Khalimsky space from the image domain." );
bool space_ok =
K.init(
domain.lowerBound(),
domain.upperBound(),
true );
if (!space_ok)
{
trace.
error() <<
"Error in the Khamisky space construction."<<std::endl;
return 2;
}
typedef SurfelAdjacency<KSpace::dimension> MySurfelAdjacency;
MySurfelAdjacency surfAdj( true );
typedef functors::FrontierPredicate<KSpace, Image> FSurfelPredicate;
typedef ExplicitDigitalSurface<KSpace,FSurfelPredicate> FrontierContainer;
typedef DigitalSurface<FrontierContainer> Frontier;
typedef functors::BoundaryPredicate<KSpace, Image> BSurfelPredicate;
typedef ExplicitDigitalSurface<KSpace,BSurfelPredicate> BoundaryContainer;
typedef DigitalSurface<BoundaryContainer> Boundary;
SCell bel10 =
K.sIncident( vox1, 0,
true );
FSurfelPredicate surfPredicate10(
K, image, 1, 0 );
Frontier frontier10 =
new FrontierContainer(
K, surfPredicate10, surfAdj, bel10 );
SCell bel20 =
K.sIncident( vox2, 0,
false );
FSurfelPredicate surfPredicate20(
K, image, 2, 0 );
Frontier frontier20 =
new FrontierContainer(
K, surfPredicate20, surfAdj, bel20 );
SCell bel32 =
K.sIncident( vox3, 0,
false );
BSurfelPredicate surfPredicate3(
K, image, 3 );
Boundary boundary3 =
new BoundaryContainer(
K, surfPredicate3, surfAdj, bel32 );
QApplication application(argc,argv);
Viewer3D<> viewer;
viewer.show();
viewer << SetMode3D(
domain.className(),
"BoundingBox" )
unsigned int nbSurfels10 = 0;
viewer << CustomColors3D( Color::Red, Color::Red );
it = frontier10.begin(), it_end = frontier10.end();
it != it_end; ++it, ++nbSurfels10 )
viewer << *it;
unsigned int nbSurfels20 = 0;
viewer << CustomColors3D( Color::Yellow, Color::Yellow );
it = frontier20.begin(), it_end = frontier20.end();
it != it_end; ++it, ++nbSurfels20 )
viewer << *it;
unsigned int nbSurfels3 = 0;
viewer << CustomColors3D( Color( 255, 130, 15 ), Color( 255, 130, 15 ) );
it = boundary3.begin(), it_end = boundary3.end();
it != it_end; ++it, ++nbSurfels3 )
viewer << *it;
trace.
info() <<
"nbSurfels10 = " << nbSurfels10
<< ", nbSurfels20 = " << nbSurfels20
<< ", nbSurfels3 = " << nbSurfels3 << std::endl;
viewer << Viewer3D<>::updateDisplay;
return application.exec();
}
void beginBlock(const std::string &keyword="")
MyDigitalSurface::ConstIterator ConstIterator
DGtal is the top-level namespace which contains all DGtal functions and types.
boost::uint8_t uint8_t
unsigned 8-bit integer.
int main(int argc, char **argv)
ImageContainerBySTLVector< Domain, Value > Image
HyperRectDomain< Space > Domain
PointVector< 3, double > RealPoint