Converting a digital set to cubical complex.
#include <iostream>
#include <cmath>
#include <map>
#include "ConfigExamples.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/base/Common.h"
#include "DGtal/topology/CubicalComplex.h"
#include "DGtal/shapes/GaussDigitizer.h"
#include "DGtal/shapes/Shapes.h"
#include "DGtal/shapes/EuclideanShapesDecorator.h"
#include "DGtal/shapes/parametric/Flower2D.h"
#include "DGtal/io/boards/Board2D.h"
#include "DGtal/io/Color.h"
using namespace std;
using namespace functors;
using namespace Z2i;
{
typedef Flower2D< Space > MyEuclideanShape;
MyEuclideanShape shape(
RealPoint( 0.0, 0.0 ), 16, 5, 5, M_PI_2/2. );
MyGaussDigitizer digShape;
digShape.init ( shape.getLowerBound(), shape.getUpperBound(), 1.0 );
Domain domainShape = digShape.getDomain();
Shapes<Domain>::digitalShaper( aSet, digShape );
Board2D board;
board << SetMode( domainShape.className(), "Paving" ) << domainShape;
Color dorange ( 255, 136, 0, 220 );
board << CustomStyle( aSet.className(), new CustomFillColor ( dorange ) );
board << aSet;
typedef map<Cell, CubicalCellData>
Map;
typedef CubicalComplex< KSpace, Map >
CC;
K.init ( domainShape.lowerBound(), domainShape.upperBound(),
true );
board << SetMode( domainShape.className(), "Paving" ) << domainShape;
it != itE; ++it )
{
if ( d == 0 )
board << CustomStyle( it->first.className(),
new CustomColors( Color( 0, 0, 0 ),
Color( 0, 0, 0 ) ) );
else if ( d == 1 )
board << CustomStyle( it->first.className(),
new CustomColors( Color( 200, 0, 0 ),
Color( 100, 255, 100 ) ) );
else
board << CustomStyle( it->first.className(),
new CustomColors( Color( 0, 0, 200 ),
Color( 100, 255, 100 ) ) );
board << it->first;
}
board.saveEPS ( "cubicalComplexes.eps" );
return 0;
}
void attach(ConstAlias< EuclideanShape > shape)
void beginBlock(const std::string &keyword="")
DGtal is the top-level namespace which contains all DGtal functions and types.
DGtal::uint32_t Dimension
int main(int argc, char **argv)
std::unordered_map< Cell, CubicalCellData > Map
CubicalComplex< KSpace, Map > CC
CC::CellMapConstIterator CellMapConstIterator
HyperRectDomain< Space > Domain
PointVector< 3, double > RealPoint
Z2i::DigitalSet DigitalSet