Skip to content

Commit

Permalink
template parameter in exampleMaximalSegmentSliceEstimation and doc + …
Browse files Browse the repository at this point in the history
…cleaning
  • Loading branch information
troussil committed Sep 11, 2024
1 parent bbb5fb2 commit 3f7a063
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ using Surfel = KSpace::SCell;
using Container = std::vector<Surfel>;
using Integer = int;
short adjacency = 4;
using SegmentComputerOnSurfels = ArithmeticalDSSComputerOnSurfels<KSpace, Container::const_iterator, Integer, adjacency>;
using SegmentComputerOnSurfels = ArithmeticalDSSComputerOnSurfels<KSpace, Container::const_iterator, Integer>;

// Instantiation
SegmentComputerOnSurfels computer(kspace, // A 3D Khalimsky space
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
#include "DGtal/base/Common.h"
#include "DGtal/kernel/SpaceND.h"
#include "DGtal/kernel/PointVector.h"
#include <DGtal/kernel/BasicPointFunctors.h>
#include "DGtal/kernel/BasicPointFunctors.h"
#include "DGtal/kernel/CInteger.h"
#include "DGtal/base/ReverseIterator.h"
#include "DGtal/geometry/curves/ArithmeticalDSS.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ namespace DGtal
using RealPoint2 = PointVector<2, double>;
using Container = std::deque<SCell>;
using Iterator = typename Container::const_iterator;
using DSSComputer = ArithmeticalDSSComputerOnSurfels<KSpace, Circulator<Iterator>, Integer, 4>;
using DSSComputer = ArithmeticalDSSComputerOnSurfels<KSpace, Circulator<Iterator>, Integer>;

// ----------------------- Standard services ------------------------------
public:
Expand Down

0 comments on commit 3f7a063

Please sign in to comment.