42 #include "DGtal/base/Common.h"
43 #include "DGtal/helpers/StdDefs.h"
44 #include "DGtal/io/boards/Board2D.h"
47 #include "DGtal/geometry/curves/ArithmeticalDSS.h"
52 using namespace DGtal;
102 board <<
SetMode(
"PointVector",
"Both");
113 board.
saveSVG(
"NaiveDSS8.svg");
115 board.
saveCairo(
"NaiveDSS8.png", Board2D::CairoPNG);
154 board <<
SetMode(
"PointVector",
"Grid")
164 board.
saveSVG(
"StandardDSS4.svg");
166 board.
saveCairo(
"StandardDSS4.png", Board2D::CairoPNG);
176 board <<
SetMode(
"PointVector",
"Both");
185 board.
saveSVG(
"StandardDSS4bis.svg");
187 board.
saveCairo(
"StandardDSS4bis.png", Board2D::CairoPNG);
237 std::vector<Point> r;
247 if (!segment.
isValid())
throw std::exception();
252 std::copy( segment.
begin(), segment.
end(), std::back_inserter(r) );
287 if (!S.
isValid())
throw std::exception();
303 board <<
SetMode(
"PointVector",
"Both");
318 board.
saveSVG(
"NaiveDSS8ExtInit.svg");
320 board.
saveCairo(
"NaiveDSS8ExtInit.png", Board2D::CairoPNG);
329 if (!resExtention)
throw std::exception();
342 board <<
SetMode(
"PointVector",
"Both");
352 board.
saveSVG(
"NaiveDSS8ExtDone.svg");
354 board.
saveCairo(
"NaiveDSS8ExtDone.png", Board2D::CairoPNG);
363 if (!resRetraction)
throw std::exception();
370 if ( !S.
equalsTo(copyOfS) )
throw std::exception();
378 int main(
int argc,
char** argv )
382 for (
int i = 0; i < argc; ++i )
std::string className() const
bool equalsTo(const ArithmeticalDSS &aOther) const
Position position(const Point &aPoint) const
Integer remainder(const Point &aPoint) const
ConstIterator begin() const
bool extendFront(const Point &aNewPoint)
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.
std::string className() const
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...
std::string className() const
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.
int main(int argc, char **argv)
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....