38 #include "DGtal/base/Common.h"
39 #include "DGtal/helpers/StdDefs.h"
40 #include "ConfigExamples.h"
44 #include "DGtal/base/BasicFunctors.h"
45 #include "DGtal/kernel/BasicPointPredicates.h"
46 #include "DGtal/io/readers/PGMReader.h"
47 #include "DGtal/images/ImageContainerBySTLVector.h"
51 #include "DGtal/topology/helpers/Surfaces.h"
55 #include "DGtal/geometry/curves/estimation/DSSLengthEstimator.h"
59 #include "DGtal/io/boards/Board2D.h"
62 #include "DGtal/geometry/curves/GreedySegmentation.h"
66 using namespace DGtal;
73 std::string filename = examplesPath +
"samples/contourS.pgm";
85 ks.
init( image.domain().lowerBound(), image.domain().upperBound(),
true );
91 std::vector< std::vector< Z2i::SCell > > contours;
96 if (contours.size() > 0)
108 Range r = c.getPointsRange();
114 trace.
info() <<
"Length: " << DSSlength.
eval(r.c(), r.c(), 1.) << std::endl;
126 aBoard <<
SetMode(
"PointVector",
"Grid");
127 for ( ; i != end; ++i) {
130 aBoard <<
SetMode(dss.className(),
"BoundingBox") << dss;
132 aBoard.
saveEPS(
"DisplayDSSSegmentationTuto3.eps");
134 }
else trace.
info() <<
"no contour" << std::endl;
Aim: This class is a wrapper around ArithmeticalDSS that is devoted to the dynamic recognition of dig...
Aim: This class represents a naive (resp. standard) digital straight segment (DSS),...
std::string className() const
Aim: This class specializes a 'Board' class so as to display DGtal objects more naturally (with <<)....
Aim: model of CConstBidirectionalRange that adapts any range of elements bounded by two iterators [it...
Aim: a model of CGlobalCurveEstimator that segments the digital curve into DSS and computes the lengt...
Quantity eval(const ConstIterator &itb, const ConstIterator &ite, const double h=1.) const
Aim: Computes the greedy segmentation of a range given by a pair of ConstIterators....
Aim: describes, in a cellular space of dimension n, a closed or open sequence of signed d-cells (or d...
bool initFromSCellsVector(const std::vector< SCell > &aVectorOfSCells)
Aim: implements association bewteen points lying in a digital domain and values.
Aim: This class is a model of CCellularGridSpaceND. It represents the cubical grid as a cell complex,...
bool init(const Point &lower, const Point &upper, bool isClosed)
Specifies the upper and lower bounds for the maximal cells in this space.
Aim: Specific iterator to visit all the maximal segments of a saturated segmentation.
const ConstIterator end() const
const ConstIterator begin() const
Aim: Computes the saturated segmentation, that is the whole set of maximal segments within a range gi...
Aim: model of CBidirectionalRangeFromPoint that adapts any range of elements bounded by two iterators...
static void extractAll2DSCellContours(std::vector< std::vector< SCell > > &aVectSCellContour2D, const KSpace &aKSpace, const SurfelAdjacency< KSpace::dimension > &aSurfelAdj, const PointPredicate &pp)
Aim: Represent adjacencies between surfel elements, telling if it follows an interior to exterior ord...
Aim: A small functor with an operator () that compares one value to an interval.
void saveEPS(const char *filename, PageSize size=Board::BoundingBox, double margin=10.0) const
functors namespace gathers all DGtal functors.
DGtal is the top-level namespace which contains all DGtal functions and types.
static ImageContainer importPGM(const std::string &aFilename, const Functor &aFunctor=Functor(), bool topbotomOrder=true)
Modifier class in a Board2D stream. Useful to choose your own mode for a given class....
Aim: The predicate returns true when the predicate returns true for the value assigned to a given poi...
int main(int argc, char **argv)
ArithmeticalDSSComputer< std::vector< Z2i::Point >::const_iterator, int, 4 > SegmentComputer
SaturatedSegmentation< SegmentComputer > Segmentation
ImageContainerBySTLVector< Domain, Value > Image