DGtal 1.3.0
Loading...
Searching...
No Matches
volTrackBoundary.cpp
Go to the documentation of this file.
1
39#include <iostream>
40#include <queue>
41#include "DGtal/base/Common.h"
42#include "DGtal/io/viewers/Viewer3D.h"
43#include "DGtal/io/readers/VolReader.h"
44#include "DGtal/io/DrawWithDisplay3DModifier.h"
45#include "DGtal/io/Color.h"
46#include "DGtal/images/ImageSelector.h"
47#include "DGtal/images/imagesSetsUtils/SetFromImage.h"
48#include "DGtal/shapes/Shapes.h"
49#include "DGtal/helpers/StdDefs.h"
50#include "DGtal/topology/helpers/Surfaces.h"
52
54
55using namespace std;
56using namespace DGtal;
57using namespace Z3i;
58
60
61void usage( int /*argc*/, char** argv )
62{
63 std::cerr << "Usage: " << argv[ 0 ] << " <fileName.vol> <minT> <maxT>" << std::endl;
64 std::cerr << "\t - displays the boundary of the shape stored in vol file <fileName.vol>." << std::endl;
65 std::cerr << "\t - voxel v belongs to the shape iff its value I(v) follows minT <= I(v) <= maxT." << std::endl;
66}
67
68int main( int argc, char** argv )
69{
70 if ( argc < 4 )
71 {
72 usage( argc, argv );
73 return 1;
74 }
75 std::string inputFilename = argv[ 1 ];
76 unsigned int minThreshold = atoi( argv[ 2 ] );
77 unsigned int maxThreshold = atoi( argv[ 3 ] );
78
80 trace.beginBlock( "Reading vol file into an image." );
82 Image image = VolReader<Image>::importVol(inputFilename);
83 DigitalSet set3d (image.domain());
85 minThreshold, maxThreshold);
88
89
91 trace.beginBlock( "Construct the Khalimsky space from the image domain." );
92 KSpace ks;
93 bool space_ok = ks.init( image.domain().lowerBound(),
94 image.domain().upperBound(), true );
95 if (!space_ok)
96 {
97 trace.error() << "Error in the Khamisky space construction."<<std::endl;
98 return 2;
99 }
100 trace.endBlock();
102
104 typedef SurfelAdjacency<KSpace::dimension> MySurfelAdjacency;
105 MySurfelAdjacency surfAdj( true ); // interior in all directions.
107
109 trace.beginBlock( "Extracting boundary by tracking from an initial bel." );
110 KSpace::SCellSet boundary;
111 SCell bel = Surfaces<KSpace>::findABel( ks, set3d, 100000 );
112 Surfaces<KSpace>::trackBoundary( boundary, ks,
113 surfAdj,
114 set3d, bel );
115 trace.endBlock();
117
119 trace.beginBlock( "Displaying surface in Viewer3D." );
120 QApplication application(argc,argv);
121 Viewer3D<> viewer( ks );
122 viewer.show();
123 viewer << SetMode3D( bel.className(), "Basic" );
124 viewer << CustomColors3D(Color(250, 0, 0 ), Color( 128, 128, 128 ) );
125 unsigned long nbSurfels = 0;
126 for ( KSpace::SCellSet::const_iterator it = boundary.begin(),
127 it_end = boundary.end(); it != it_end; ++it, ++nbSurfels )
128 viewer << *it;
129 viewer << Viewer3D<>::updateDisplay;
130 trace.info() << "nb surfels = " << nbSurfels << std::endl;
131 trace.endBlock();
132 return application.exec();
134}
135
Structure representing an RGB triple with alpha component.
Definition: Color.h:68
Aim: A wrapper class around a STL associative container for storing sets of digital points within som...
Aim: implements association bewteen points lying in a digital domain and values.
Definition: Image.h:70
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.
std::set< SCell > SCellSet
Preferred type for defining a set of SCell(s).
static void trackBoundary(SCellSet &surface, const KSpace &K, const SurfelAdjacency< KSpace::dimension > &surfel_adj, const PointPredicate &pp, const SCell &start_surfel)
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()
virtual void show()
Overload QWidget method in order to add a call to updateList() method (to ensure that the lists are w...
DGtal is the top-level namespace which contains all DGtal functions and types.
Trace trace
Definition: Common.h:154
STL namespace.
ImageContainerBySTLVector< Domain, Value > Type
Definition: ImageSelector.h:78
Aim: Define utilities to convert a digital set into an image.
Definition: SetFromImage.h:64
Modifier class in a Display3D stream. Useful to choose your own mode for a given class....
Represents a signed cell in a cellular grid space by its Khalimsky coordinates and a boolean value.
std::string className() const
Return the style name used for drawing this object.
static ImageContainer importVol(const std::string &filename, const Functor &aFunctor=Functor())
int main()
Definition: testBits.cpp:56