DGtal 1.3.0
Loading...
Searching...
No Matches
Functions
volScanBoundary.cpp File Reference
#include <iostream>
#include <queue>
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/io/readers/VolReader.h"
#include "DGtal/io/DrawWithDisplay3DModifier.h"
#include "DGtal/io/Color.h"
#include "DGtal/images/ImageSelector.h"
#include "DGtal/images/imagesSetsUtils/SetFromImage.h"
#include "DGtal/shapes/Shapes.h"
#include "DGtal/topology/helpers/Surfaces.h"
#include "DGtal/io/viewers/Viewer3D.h"

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 volScanBoundary.

This file is part of the DGtal library.

Definition in file volScanBoundary.cpp.

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

[volScanBoundary-readVol]

[volScanBoundary-readVol]

[volScanBoundary-KSpace]

[volScanBoundary-KSpace]

[volScanBoundary-ExtractingSurface]

[volScanBoundary-ExtractingSurface]

[volScanBoundary-DisplayingSurface]

[volScanBoundary-DisplayingSurface]

Definition at line 66 of file volScanBoundary.cpp.

67{
68 if ( argc < 4 )
69 {
70 usage( argc, argv );
71 return 1;
72 }
73 std::string inputFilename = argv[ 1 ];
74 unsigned int minThreshold = atoi( argv[ 2 ] );
75 unsigned int maxThreshold = atoi( argv[ 3 ] );
76
78 trace.beginBlock( "Reading vol file into an image." );
80 Image image = VolReader<Image>::importVol(inputFilename);
81 DigitalSet set3d (image.domain());
83 minThreshold, maxThreshold);
86
87
89 trace.beginBlock( "Construct the Khalimsky space from the image domain." );
90 KSpace ks;
91 bool space_ok = ks.init( image.domain().lowerBound(),
92 image.domain().upperBound(), true );
93 if (!space_ok)
94 {
95 trace.error() << "Error in the Khamisky space construction."<<std::endl;
96 return 2;
97 }
100
102 trace.beginBlock( "Extracting boundary by scanning the space. " );
103 KSpace::SCellSet boundary;
104 Surfaces<KSpace>::sMakeBoundary( boundary, ks, set3d,
105 image.domain().lowerBound(),
106 image.domain().upperBound() );
107 trace.endBlock();
109
111 trace.beginBlock( "Displaying surface in Viewer3D." );
112 QApplication application(argc,argv);
113 Viewer3D<> viewer( ks );
114 viewer.show();
115 KSpace::SCell dummy_scell;
116 viewer << SetMode3D( dummy_scell.className(), "Basic" );
117 viewer << CustomColors3D(Color(250, 0, 0 ), Color( 128, 128, 128 ) );
118 unsigned long nbSurfels = 0;
119 for ( KSpace::SCellSet::const_iterator it = boundary.begin(),
120 it_end = boundary.end(); it != it_end; ++it, ++nbSurfels )
121 viewer << *it;
122 viewer << Viewer3D<>::updateDisplay;
123 trace.info() << "nb surfels = " << nbSurfels << std::endl;
124 trace.endBlock();
125 return application.exec();
127}
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 sMakeBoundary(SCellSet &aBoundary, const KSpace &aKSpace, const PointPredicate &pp, const Point &aLowerBound, const Point &aUpperBound)
void beginBlock(const std::string &keyword="")
std::ostream & error()
std::ostream & info()
double endBlock()
Trace trace
Definition: Common.h:154
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())

References DGtal::Trace::beginBlock(), DGtal::SignedKhalimskyCell< dim, TInteger >::className(), DGtal::DigitalSetByAssociativeContainer< TDomain, TContainer >::domain(), DGtal::Trace::endBlock(), DGtal::Trace::error(), DGtal::VolReader< TImageContainer, TFunctor >::importVol(), DGtal::Trace::info(), DGtal::KhalimskySpaceND< dim, TInteger >::init(), DGtal::Viewer3D< TSpace, TKSpace >::show(), DGtal::Surfaces< TKSpace >::sMakeBoundary(), and DGtal::trace.

◆ usage()

void usage ( int  ,
char **  argv 
)

Definition at line 59 of file volScanBoundary.cpp.

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