Example of 6-18 digital Adjacencies visualization with Viewer3D.
#include <iostream>
#include "DGtal/base/Common.h"
#include "DGtal/io/DrawWithDisplay3DModifier.h"
#include "DGtal/io/Color.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/shapes/Shapes.h"
#include "DGtal/io/viewers/Viewer3D.h"
using namespace std;
using namespace Z3i;
int main(
int argc,
char** argv )
{
QApplication application(argc,argv);
typedef Viewer3D<> MyViewer;
MyViewer viewer;
viewer.show();
Shapes<Domain>::addNorm1Ball( shape_set,
Point( 5, 5, 5 ), 2 );
Shapes<Domain>::addNorm2Ball( shape_set,
Point( 3, 3, 3 ), 2 );
viewer << CustomColors3D(Color(250, 200,0, 100),Color(250, 200,0, 25));
viewer << shape_set;
viewer << SetMode3D( shape.className(), "DrawAdjacencies" );
viewer << shape;
viewer << SetMode3D( shape2.className(), "DrawAdjacencies" );
viewer<< MyViewer::updateDisplay;
return application.exec();
}
Object< DT6_18, DigitalSet > Object6_18
Object< DT18_6, DigitalSet > Object18_6
DGtal is the top-level namespace which contains all DGtal functions and types.
int main(int argc, char **argv)
HyperRectDomain< Space > Domain
Z2i::DigitalSet DigitalSet