This example shows the basic usage of a 8-connected and a 4-connected arithmetical DSS.
#include <iostream>
#include <exception>
#include "DGtal/base/Common.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/io/boards/Board2D.h"
#include "DGtal/geometry/curves/ArithmeticalDSS.h"
using namespace Z2i;
{
using namespace Z2i;
);
trace.
info() << segment << std::endl;
it != ite; ++it )
{
<< ") ";
}
trace.
info() << std::endl;
board <<
SetMode(
"PointVector",
"Both");
<< segment;
<< segment;
#ifdef WITH_CAIRO
board.
saveCairo(
"NaiveDSS8.png", Board2D::CairoPNG);
#endif
}
{
using namespace Z2i;
);
trace.
info() << segment << std::endl;
board <<
SetMode(
"PointVector",
"Grid")
<<
SetMode(segment.className(),
"Points")
<< segment;
board <<
SetMode(segment.className(),
"BoundingBox")
<< segment;
#ifdef WITH_CAIRO
board.
saveCairo(
"StandardDSS4.png", Board2D::CairoPNG);
#endif
board <<
SetMode(
"PointVector",
"Both");
board <<
SetMode(segment.className(),
"Points")
<< segment;
board <<
SetMode(segment.className(),
"BoundingBox")
<< segment;
board.
saveSVG(
"StandardDSS4bis.svg");
#ifdef WITH_CAIRO
board.
saveCairo(
"StandardDSS4bis.png", Board2D::CairoPNG);
#endif
}
{
using namespace Z2i;
{
}
{
}
{
}
{
}
std::vector<Point> r;
{
);
if (!segment.isValid()) throw std::exception();
std::copy( segment.begin(), segment.end(), std::back_inserter(r) );
}
{
}
}
{
using namespace Z2i;
);
if (!S.isValid()) throw std::exception();
{
board <<
SetMode(
"PointVector",
"Both");
board <<
SetMode(S.className(),
"Points")
<< S
<<
SetMode(S.className(),
"BoundingBox")
<< S;
board <<
SetMode(M.className(),
"Both")
<< M;
board.
saveSVG(
"NaiveDSS8ExtInit.svg");
#ifdef WITH_CAIRO
board.
saveCairo(
"NaiveDSS8ExtInit.png", Board2D::CairoPNG);
#endif
}
bool resExtention = S.extendFront( M );
if (!resExtention) throw std::exception();
{
board <<
SetMode(
"PointVector",
"Both");
board <<
SetMode(S.className(),
"Points")
<< S
<<
SetMode(S.className(),
"BoundingBox")
<< S;
board.
saveSVG(
"NaiveDSS8ExtDone.svg");
#ifdef WITH_CAIRO
board.
saveCairo(
"NaiveDSS8ExtDone.png", Board2D::CairoPNG);
#endif
}
bool resRetraction = S.retractFront();
if (!resRetraction) throw std::exception();
if ( !S.equalsTo(copyOfS) ) throw std::exception();
}
int main(
int argc,
char** argv )
{
for ( int i = 0; i < argc; ++i )
return 0;
}
std::string className() const
Position position(const Point &aPoint) const
Integer remainder(const Point &aPoint) const
ConstIterator begin() const
DSL::ConstIterator ConstIterator
ConstIterator end() const
Aim: This class specializes a 'Board' class so as to display DGtal objects more naturally (with <<)....
Structure representing an RGB triple with alpha component.
Aim: This class is an alias of ArithmeticalDSS for naive DSL. It represents a naive digital straight ...
Aim: This class represents a standard digital straight segment (DSS), ie. the sequence of simply 8-co...
Aim: This class represents a standard digital straight segment (DSS), ie. the sequence of simply 4-co...
void beginBlock(const std::string &keyword="")
void clear(const DGtal::Color &color=DGtal::Color::None)
void drawArrow(double x1, double y1, double x2, double y2, bool filled=true, int depthValue=-1)
void saveSVG(const char *filename, PageSize size=Board::BoundingBox, double margin=10.0) const
void saveCairo(const char *filename, CairoType type=CairoPNG, PageSize size=Board::BoundingBox, double margin=10.0) const
void exampleUpdate()
Function showing how a DSS can be extended and retracted.
void exampleNaiveDSS()
Function that illustrates the basic usage of a naive DSS.
void exampleStandardDSS()
Function that illustrates the basic usage of a standard DSS.
void exampleConstructors()
Function showing the different ways of constructing DSSs.
DGtal is the top-level namespace which contains all DGtal functions and types.
Custom style class redefining the pen color and the fill color. You may use Board2D::Color::None for ...
Modifier class in a Board2D stream. Useful to choose your own mode for a given class....
HyperRectDomain< Space > Domain