DGtal 2.1.0
Loading...
Searching...
No Matches
volBreadthFirstTraversal.cpp File Reference
#include <iostream>
#include <queue>
#include "DGtal/io/readers/VolReader.h"
#include "DGtal/io/Color.h"
#include "DGtal/io/colormaps/HueShadeColorMap.h"
#include "DGtal/io/viewers/PolyscopeViewer.h"
#include "DGtal/images/ImageSelector.h"
#include "DGtal/images/imagesSetsUtils/SetFromImage.h"
#include "DGtal/shapes/Shapes.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/topology/DigitalSurface.h"
#include "DGtal/topology/LightImplicitDigitalSurface.h"
Include dependency graph for volBreadthFirstTraversal.cpp:

Go to the source code of this file.

Functions

void usage (int, char **argv)
 
int main (int argc, char **argv)
 

Detailed Description

Author
Jacques-Olivier Lachaud (jacqu.nosp@m.es-o.nosp@m.livie.nosp@m.r.la.nosp@m.chaud.nosp@m.@uni.nosp@m.v-sav.nosp@m.oie..nosp@m.fr ) Laboratory of Mathematics (CNRS, UMR 5127), University of Savoie, France
Date
2012/02/06

An example file named volBreadthFirstTraversal.

This file is part of the DGtal library.

Definition in file volBreadthFirstTraversal.cpp.

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

[volBreadthFirstTraversal-readVol]

[volBreadthFirstTraversal-readVol]

[volBreadthFirstTraversal-KSpace]

[volBreadthFirstTraversal-KSpace]

[volBreadthFirstTraversal-SurfelAdjacency]

[volBreadthFirstTraversal-SurfelAdjacency]

[volBreadthFirstTraversal-SetUpDigitalSurface]

[volBreadthFirstTraversal-SetUpDigitalSurface]

[volBreadthFirstTraversal-ExtractingSurface]

[volBreadthFirstTraversal-ExtractingSurface]

[volBreadthFirstTraversal-DisplayingSurface]

[volBreadthFirstTraversal-DisplayingSurface]

Definition at line 61 of file volBreadthFirstTraversal.cpp.

62{
63 if ( argc < 4 )
64 {
65 usage( argc, argv );
66 return 1;
67 }
68 std::string inputFilename = argv[ 1 ];
69 unsigned int minThreshold = atoi( argv[ 2 ] );
70 unsigned int maxThreshold = atoi( argv[ 3 ] );
71
73 trace.beginBlock( "Reading vol file into an image." );
76 DigitalSet set3d (image.domain());
78 minThreshold, maxThreshold);
81
82
84 trace.beginBlock( "Construct the Khalimsky space from the image domain." );
85 KSpace ks;
86 bool space_ok = ks.init( image.domain().lowerBound(),
87 image.domain().upperBound(), true );
88 if (!space_ok)
89 {
90 trace.error() << "Error in the Khamisky space construction."<<std::endl;
91 return 2;
92 }
95
97 typedef SurfelAdjacency<KSpace::dimension> MySurfelAdjacency;
98 MySurfelAdjacency surfAdj( true ); // interior in all directions.
100
102 trace.beginBlock( "Set up digital surface." );
106 SCell bel = Surfaces<KSpace>::findABel( ks, set3d, 100000 );
107 MyDigitalSurfaceContainer* ptrSurfContainer =
108 new MyDigitalSurfaceContainer( ks, set3d, surfAdj, bel );
109 MyDigitalSurface digSurf( ptrSurfContainer ); // acquired
110 trace.endBlock();
112
114 trace.beginBlock( "Extracting boundary by tracking from an initial bel." );
115 typedef BreadthFirstVisitor<MyDigitalSurface> MyBreadthFirstVisitor;
116 typedef MyBreadthFirstVisitor::Node MyNode;
117 MyBreadthFirstVisitor visitor( digSurf, bel );
118 unsigned long nbSurfels = 0;
119 MyNode node;
120 while ( ! visitor.finished() )
121 {
122 node = visitor.current();
123 ++nbSurfels;
124 visitor.expand();
125 }
126 trace.endBlock();
128
130 trace.beginBlock( "Displaying surface in PolyscopeViewer." );
131 PolyscopeViewer<> viewer;
132 MyBreadthFirstVisitor visitor2( digSurf, bel );
133 viewer << Color::White
134 << ks.unsigns( bel );
135 visitor2.expand();
136 while ( ! visitor2.finished() )
137 {
138 node = visitor2.current();
139 viewer << WithQuantity(ks.unsigns(node.first), "value", node.second);
140 visitor2.expand();
141 }
142 trace.info() << "nb surfels = " << nbSurfels << std::endl;
143 trace.endBlock();
144 viewer.show();
145 return 0;
147}
Aim: This class is useful to perform a breadth-first exploration of a graph given a starting point or...
static const Color White
Definition Color.h:424
Aim: A wrapper class around a STL associative container for storing sets of digital points within som...
Aim: Represents a set of n-1-cells in a nD space, together with adjacency relation between these cell...
Aim: implements association bewteen points lying in a digital domain and values.
Definition Image.h:70
const Domain & domain() const
Definition Image.h:192
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.
Cell unsigns(const SCell &p) const
Creates an unsigned cell from a signed one.
Aim: A model of CDigitalSurfaceContainer which defines the digital surface as the boundary of an impl...
void show() override
Starts the event loop and display of elements.
static SCell findABel(const KSpace &K, const PointPredicate &pp, unsigned int nbtries=1000)
Aim: Represent adjacencies between surfel elements, telling if it follows an interior to exterior ord...
void beginBlock(const std::string &keyword="")
std::ostream & error()
std::ostream & info()
double endBlock()
DigitalSurface< MyDigitalSurfaceContainer > MyDigitalSurface
DigitalSetBoundary< KSpace, DigitalSet > MyDigitalSurfaceContainer
Trace trace
ImageContainerBySTLVector< Domain, Value > Type
Aim: Define utilities to convert a digital set into an image.
Represents a signed cell in a cellular grid space by its Khalimsky coordinates and a boolean value.
static ImageContainer importVol(const std::string &filename, const Functor &aFunctor=Functor())
Attach a property to an element.
Definition Display3D.h:331
Image image(domain)

References DGtal::Trace::beginBlock(), DGtal::Image< TImageContainer >::domain(), DGtal::Trace::endBlock(), DGtal::Trace::error(), DGtal::Surfaces< TKSpace >::findABel(), image(), DGtal::VolReader< TImageContainer, TFunctor >::importVol(), DGtal::Trace::info(), DGtal::KhalimskySpaceND< dim, TInteger >::init(), DGtal::PolyscopeViewer< Space, KSpace >::show(), DGtal::trace, DGtal::KhalimskySpaceND< dim, TInteger >::unsigns(), usage(), and DGtal::Color::White.

◆ usage()

void usage ( int  ,
char **  argv 
)

Definition at line 54 of file volBreadthFirstTraversal.cpp.

55{
56 std::cerr << "Usage: " << argv[ 0 ] << " <fileName.vol> <minT> <maxT>" << std::endl;
57 std::cerr << "\t - displays the boundary of the shape stored in vol file <fileName.vol>." << std::endl;
58 std::cerr << "\t - voxel v belongs to the shape iff its value I(v) follows minT <= I(v) <= maxT." << std::endl;
59}