18 #include "DGtal/base/Common.h" 19 #include "DGtal/kernel/CanonicEmbedder.h" 20 #include "DGtal/io/readers/VolReader.h" 21 #include "DGtal/images/ImageSelector.h" 22 #include "DGtal/images/imagesSetsUtils/SetFromImage.h" 23 #include "DGtal/images/ImageLinearCellEmbedder.h" 24 #include "DGtal/shapes/Shapes.h" 25 #include "DGtal/helpers/StdDefs.h" 26 #include "DGtal/topology/helpers/Surfaces.h" 27 #include "DGtal/topology/DigitalSurface.h" 28 #include "DGtal/topology/SetOfSurfels.h" 29 #include "DGtal/shapes/Mesh.h" 30 #include "DGtal/shapes/TriangulatedSurface.h" 31 #include "DGtal/shapes/MeshHelpers.h" 32 #include "DGtal/io/viewers/Viewer3D.h" 38 using namespace DGtal;
45 std::cerr <<
"Usage: " << argv[ 0 ] <<
" <fileName.vol> <minT> [<maxT>=255] [<Adj>=0]" << std::endl;
46 std::cerr <<
"\t - displays the boundary of the shape stored in vol file <fileName.vol>" << std::endl;
47 std::cerr <<
"\t as a Marching-Cube triangulated surface (more precisely a dual" << std::endl;
48 std::cerr <<
"\t surface to the digital boundary)." << std::endl;
49 std::cerr <<
"\t - voxel v belongs to the shape iff its value I(v) follows minT < I(v) <= maxT." << std::endl;
50 std::cerr <<
"\t - minT is the iso-surface level." << std::endl;
51 std::cerr <<
"\t - maxT should be equal to the maximum possible value in the image." << std::endl;
52 std::cerr <<
"\t - 0: interior adjacency, 1: exterior adjacency (rules used to connect surface elements unambiguously)." << std::endl;
55 int main(
int argc,
char** argv )
62 std::string inputFilename = argv[ 1 ];
63 unsigned int minThreshold = atoi( argv[ 2 ] );
64 unsigned int maxThreshold = argc > 3 ? atoi( argv[ 3 ] ) : 255;
65 bool intAdjacency = argc > 4 ? (atoi( argv[ 4 ] ) == 0) :
true;
72 DigitalSet set3d (image.domain());
74 minThreshold, maxThreshold);
80 trace.
beginBlock(
"Construct the Khalimsky space from the image domain." );
82 bool space_ok = ks.
init( image.domain().lowerBound(),
83 image.domain().upperBound(), true );
86 trace.
error() <<
"Error in the Khamisky space construction."<<std::endl;
94 MySurfelAdjacency surfAdj( intAdjacency );
102 MySetOfSurfels theSetOfSurfels( ks, surfAdj );
106 image.domain().upperBound() );
108 trace.
info() <<
"Digital surface has " << digSurf.size() <<
" surfels." 120 typedef std::map< MyDigitalSurface::Vertex, TriMesh::Index > VertexMap;
123 TrivialEmbedder trivialEmbedder;
124 CellEmbedder cellEmbedder;
127 cellEmbedder.init( ks, image, trivialEmbedder,
128 ( (
double) minThreshold ) + 0.5 );
130 MeshHelpers::digitalSurface2DualTriangulatedSurface
131 ( digSurf, cellEmbedder, trimesh, vmap );
132 trace.
info() <<
"Triangulated surface is " << trimesh << std::endl;
133 MeshHelpers::triangulatedSurface2Mesh( trimesh, viewmesh );
134 trace.
info() <<
"Mesh has " << viewmesh.nbVertex()
135 <<
" vertices and " << viewmesh.nbFaces() <<
" faces." << std::endl;
139 QApplication application(argc,argv);
144 viewer << Viewer3D<>::updateDisplay;
void beginBlock(const std::string &keyword="")
MyDigitalSurface::SurfelSet SurfelSet
Aim: implements association bewteen points lying in a digital domain and values.
Aim: A utility class for constructing surfaces (i.e. set of (n-1)-cells).
std::set< SCell > SurfelSet
Preferred type for defining a set of surfels (always signed cells).
Aim: This class is defined to represent a surface mesh through a set of vertices and faces....
virtual void setLineColor(DGtal::Color aColor)
Aim: Represents a set of n-1-cells in a nD space, together with adjacency relation between these cell...
int main(int argc, char **argv)
PointVector< 3, double > RealPoint
bool init(const Point &lower, const Point &upper, bool isClosed)
Specifies the upper and lower bounds for the maximal cells in this space.
Aim: Represents a triangulated surface. The topology is stored with a half-edge data structure....
Aim: implements methods to read a "Vol" file format.
const Point & lowerBound() const
Return the lower bound for digital points in this space.
DGtal is the top-level namespace which contains all DGtal functions and types.
Aim: Define utilities to convert a digital set into an image.
Aim: A trivial embedder for digital points, which corresponds to the canonic injection of Zn into Rn.
ImageContainerBySTLVector< Domain, Value > Image
TriangulatedSurface< RealPoint > TriMesh
Aim: A model of CDigitalSurfaceContainer which defines the digital surface as connected surfels....
Structure representing an RGB triple with alpha component.
virtual void show()
Overload QWidget method in order to add a call to updateList() method (to ensure that the lists are w...
Aim: a cellular embedder for images. (default constructible, copy constructible, assignable)....
Aim: This class is a model of CCellularGridSpaceND. It represents the cubical grid as a cell complex,...
void usage(int, char **argv)
DigitalSurface< MyDigitalSurfaceContainer > MyDigitalSurface