DGtal 1.3.0
Loading...
Searching...
No Matches
Functions
volMarchingCubes.cpp File Reference
#include <iostream>
#include <queue>
#include "DGtal/base/Common.h"
#include "DGtal/kernel/CanonicEmbedder.h"
#include "DGtal/io/readers/VolReader.h"
#include "DGtal/images/ImageSelector.h"
#include "DGtal/images/imagesSetsUtils/SetFromImage.h"
#include "DGtal/images/ImageLinearCellEmbedder.h"
#include "DGtal/shapes/Shapes.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/topology/helpers/Surfaces.h"
#include "DGtal/topology/DigitalSurface.h"
#include "DGtal/topology/SetOfSurfels.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 volMarchingCubes.

This file is part of the DGtal library.

Definition in file volMarchingCubes.cpp.

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

[volMarchingCubes-readVol]

[volMarchingCubes-readVol]

[volMarchingCubes-KSpace]

[volMarchingCubes-KSpace]

[volMarchingCubes-SurfelAdjacency]

[volMarchingCubes-SurfelAdjacency]

[volMarchingCubes-ExtractingSurface]

[volMarchingCubes-ExtractingSurface]

[volMarchingCubes-makingOFF]

[volMarchingCubes-makingOFF]

Definition at line 66 of file volMarchingCubes.cpp.

67{
68 if ( argc < 5 )
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 bool intAdjacency = atoi( argv[ 4 ] ) == 0;
77
79 trace.beginBlock( "Reading vol file into an image." );
81 Image image = VolReader<Image>::importVol(inputFilename);
82 DigitalSet set3d (image.domain());
84 minThreshold, maxThreshold);
87
88
90 trace.beginBlock( "Construct the Khalimsky space from the image domain." );
91 KSpace ks;
92 bool space_ok = ks.init( image.domain().lowerBound(),
93 image.domain().upperBound(), true );
94 if (!space_ok)
95 {
96 trace.error() << "Error in the Khamisky space construction."<<std::endl;
97 return 2;
98 }
101
103 typedef SurfelAdjacency<KSpace::dimension> MySurfelAdjacency;
104 MySurfelAdjacency surfAdj( intAdjacency ); // interior in all directions.
106
108 trace.beginBlock( "Extracting boundary by scanning the space. " );
110 typedef SetOfSurfels< KSpace, SurfelSet > MySetOfSurfels;
112 MySetOfSurfels theSetOfSurfels( ks, surfAdj );
113 Surfaces<KSpace>::sMakeBoundary( theSetOfSurfels.surfelSet(),
114 ks, set3d,
115 image.domain().lowerBound(),
116 image.domain().upperBound() );
117 MyDigitalSurface digSurf( theSetOfSurfels );
118 trace.info() << "Digital surface has " << digSurf.size() << " surfels."
119 << std::endl;
120 trace.endBlock();
122
124 trace.beginBlock( "Making OFF surface <marching-cube.off>. " );
125 typedef CanonicEmbedder< Space > MyEmbedder;
126 typedef
128 CellEmbedder cellEmbedder;
129 MyEmbedder trivialEmbedder;
130 // The +0.5 is to avoid isosurface going exactly through a voxel
131 // center, especially for binary volumes.
132 cellEmbedder.init( ks, image, trivialEmbedder,
133 ( (double) minThreshold ) + 0.5 );
134 ofstream out( "marching-cube.off" );
135 if ( out.good() )
136 digSurf.exportEmbeddedSurfaceAs3DOFF( out, cellEmbedder );
137 out.close();
138 trace.endBlock();
140 return 0;
141}
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: a cellular embedder for images. (default constructible, copy constructible, assignable)....
void init(ConstAlias< KSpace > K, ConstAlias< Image > f, ConstAlias< Embedder > e, double iso_value)
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,...
std::set< SCell > SurfelSet
Preferred type for defining a set of surfels (always signed cells).
bool init(const Point &lower, const Point &upper, bool isClosed)
Specifies the upper and lower bounds for the maximal cells in this space.
Aim: A model of CDigitalSurfaceContainer which defines the digital surface as connected surfels....
Definition: SetOfSurfels.h:74
static void sMakeBoundary(SCellSet &aBoundary, const KSpace &aKSpace, const PointPredicate &pp, const Point &aLowerBound, const Point &aUpperBound)
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
MyDigitalSurface::SurfelSet SurfelSet
Trace trace
Definition: Common.h:154
Aim: A trivial embedder for digital points, which corresponds to the canonic injection of Zn into Rn.
ImageContainerBySTLVector< Domain, Value > Type
Definition: ImageSelector.h:78
Aim: Define utilities to convert a digital set into an image.
Definition: SetFromImage.h:64
static ImageContainer importVol(const std::string &filename, const Functor &aFunctor=Functor())

References DGtal::Trace::beginBlock(), DGtal::DigitalSetByAssociativeContainer< TDomain, TContainer >::domain(), DGtal::Trace::endBlock(), DGtal::Trace::error(), DGtal::DigitalSurface< TDigitalSurfaceContainer >::exportEmbeddedSurfaceAs3DOFF(), DGtal::VolReader< TImageContainer, TFunctor >::importVol(), DGtal::Trace::info(), DGtal::KhalimskySpaceND< dim, TInteger >::init(), DGtal::ImageLinearCellEmbedder< TKSpace, TImage, TEmbedder >::init(), DGtal::DigitalSurface< TDigitalSurfaceContainer >::size(), DGtal::Surfaces< TKSpace >::sMakeBoundary(), and DGtal::trace.

◆ usage()

void usage ( int  ,
char **  argv 
)

Definition at line 57 of file volMarchingCubes.cpp.

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