Loading [MathJax]/extensions/TeX/AMSsymbols.js
DGtal 2.0.0
volScanBoundary.cpp
Go to the documentation of this file.
1
13
34
35
38#include <iostream>
39#include <queue>
40#include "DGtal/helpers/StdDefs.h"
41#include "DGtal/io/readers/VolReader.h"
42#include "DGtal/io/Color.h"
43#include "DGtal/images/ImageSelector.h"
44#include "DGtal/images/imagesSetsUtils/SetFromImage.h"
45#include "DGtal/shapes/Shapes.h"
46#include "DGtal/topology/helpers/Surfaces.h"
47#include "DGtal/io/viewers/PolyscopeViewer.h"
49
51
52using namespace std;
53using namespace DGtal;
54using namespace Z3i;
55
57
58void usage( int, char** argv )
59{
60 std::cerr << "Usage: " << argv[ 0 ] << " <fileName.vol> <minT> <maxT>" << std::endl;
61 std::cerr << "\t - displays the boundary of the shape stored in vol file <fileName.vol>." << std::endl;
62 std::cerr << "\t - voxel v belongs to the shape iff its value I(v) follows minT <= I(v) <= maxT." << std::endl;
63}
64
65int main( int argc, char** argv )
66{
67 if ( argc < 4 )
68 {
69 usage( argc, argv );
70 return 1;
71 }
72 std::string inputFilename = argv[ 1 ];
73 unsigned int minThreshold = atoi( argv[ 2 ] );
74 unsigned int maxThreshold = atoi( argv[ 3 ] );
75
77 trace.beginBlock( "Reading vol file into an image." );
80 DigitalSet set3d (image.domain());
82 minThreshold, maxThreshold);
83 trace.endBlock();
85
86
88 trace.beginBlock( "Construct the Khalimsky space from the image domain." );
89 KSpace ks;
90 bool space_ok = ks.init( image.domain().lowerBound(),
91 image.domain().upperBound(), true );
92 if (!space_ok)
93 {
94 trace.error() << "Error in the Khamisky space construction."<<std::endl;
95 return 2;
96 }
97 trace.endBlock();
99
101 trace.beginBlock( "Extracting boundary by scanning the space. " );
102 KSpace::SCellSet boundary;
103 Surfaces<KSpace>::sMakeBoundary( boundary, ks, set3d,
104 image.domain().lowerBound(),
105 image.domain().upperBound() );
106 trace.endBlock();
108
110 trace.beginBlock( "Displaying surface in PolyscopeViewer." );
111 PolyscopeViewer<> viewer( ks );
112 KSpace::SCell dummy_scell;
114 viewer << Color( 128, 128, 128 );
115 unsigned long nbSurfels = 0;
116 for ( KSpace::SCellSet::const_iterator it = boundary.begin(),
117 it_end = boundary.end(); it != it_end; ++it, ++nbSurfels )
118 viewer << *it;
119 trace.info() << "nb surfels = " << nbSurfels << std::endl;
120 trace.endBlock();
121 viewer.show();
122 return 0;
124}
125
Structure representing an RGB triple with alpha component.
Definition Color.h:77
DisplayStyle currentStyle
Definition Display3D.h:729
Aim: implements association bewteen points lying in a digital domain and values.
Definition Image.h:70
bool init(const Point &lower, const Point &upper, bool isClosed)
Specifies the upper and lower bounds for the maximal cells in this space.
SignedKhalimskyCell< dim, Integer > SCell
void show() override
Starts the event loop and display of elements.
static void sMakeBoundary(SCellSet &aBoundary, const KSpace &aKSpace, const PointPredicate &pp, const Point &aLowerBound, const Point &aUpperBound)
Z3i this namespace gathers the standard of types for 3D imagery.
KhalimskySpaceND< 3, Integer > KSpace
Definition StdDefs.h:146
DigitalSetSelector< Domain, BIG_DS+HIGH_BEL_DS >::Type DigitalSet
Definition StdDefs.h:173
DGtal is the top-level namespace which contains all DGtal functions and types.
Trace trace
STL namespace.
ImageContainerBySTLVector< Domain, Value > Type
static void append(Set &aSet, const ForegroundPredicate &isForeground, typename Image::Domain::ConstIterator itBegin, typename Image::Domain::ConstIterator itEnd)
static ImageContainer importVol(const std::string &filename, const Functor &aFunctor=Functor())
int main()
Definition testBits.cpp:56
Image image(domain)