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"
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;
65int main(
int argc,
char** argv )
72 std::string inputFilename = argv[ 1 ];
73 unsigned int minThreshold = atoi( argv[ 2 ] );
74 unsigned int maxThreshold = atoi( argv[ 3 ] );
77 trace.beginBlock(
"Reading vol file into an image." );
82 minThreshold, maxThreshold);
88 trace.beginBlock(
"Construct the Khalimsky space from the image domain." );
90 bool space_ok = ks.
init(
image.domain().lowerBound(),
91 image.domain().upperBound(),
true );
94 trace.error() <<
"Error in the Khamisky space construction."<<std::endl;
101 trace.beginBlock(
"Extracting boundary by scanning the space. " );
104 image.domain().lowerBound(),
105 image.domain().upperBound() );
110 trace.beginBlock(
"Displaying surface in PolyscopeViewer." );
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 )
119 trace.info() <<
"nb surfels = " << nbSurfels << std::endl;
65int main(
int argc,
char** argv ) {
…}
Structure representing an RGB triple with alpha component.
DisplayStyle currentStyle
Aim: implements association bewteen points lying in a digital domain and values.
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
std::set< SCell > SCellSet
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
DigitalSetSelector< Domain, BIG_DS+HIGH_BEL_DS >::Type DigitalSet
DGtal is the top-level namespace which contains all DGtal functions and types.
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())