DGtal 1.3.0
Loading...
Searching...
No Matches
Namespaces | Typedefs | Functions
digitalPolyhedronBuilder3D.cpp File Reference
#include <iostream>
#include <queue>
#include "DGtal/base/Common.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/io/viewers/Viewer3D.h"
#include "DGtal/shapes/Shapes.h"
#include "DGtal/shapes/SurfaceMesh.h"
#include "DGtal/io/readers/SurfaceMeshReader.h"
#include "DGtal/geometry/volumes/DigitalConvexity.h"
#include "ConfigExamples.h"

Go to the source code of this file.

Namespaces

namespace  DGtal
 DGtal is the top-level namespace which contains all DGtal functions and types.
 

Typedefs

typedef Z3i::Space Space
 
typedef Z3i::Integer Integer
 
typedef Z3i::KSpace KSpace
 
typedef Z3i::Domain Domain
 
typedef Z3i::SCell SCell
 
typedef Space::Point Point
 
typedef Space::RealPoint RealPoint
 
typedef Space::RealVector RealVector
 
typedef Space::Vector Vector
 
typedef std::vector< PointPointRange
 

Functions

int main (int argc, char **argv)
 

Detailed Description

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

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
2022/06/20

An example file named digitalPolyhedronBuilder3D

This file is part of the DGtal library.

Definition in file digitalPolyhedronBuilder3D.cpp.

Typedef Documentation

◆ Domain

Definition at line 78 of file digitalPolyhedronBuilder3D.cpp.

◆ Integer

Definition at line 76 of file digitalPolyhedronBuilder3D.cpp.

◆ KSpace

Definition at line 77 of file digitalPolyhedronBuilder3D.cpp.

◆ Point

Definition at line 80 of file digitalPolyhedronBuilder3D.cpp.

◆ PointRange

typedef std::vector<Point> PointRange

◆ RealPoint

Definition at line 81 of file digitalPolyhedronBuilder3D.cpp.

◆ RealVector

Definition at line 82 of file digitalPolyhedronBuilder3D.cpp.

◆ SCell

typedef Z3i::SCell SCell

◆ Space

typedef Z3i::Space Space

Definition at line 75 of file digitalPolyhedronBuilder3D.cpp.

◆ Vector

Definition at line 83 of file digitalPolyhedronBuilder3D.cpp.

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 86 of file digitalPolyhedronBuilder3D.cpp.

87{
88 trace.info() << "Usage: " << argv[ 0 ] << " <input.obj> <h> <view>" << std::endl;
89 trace.info() << "\tComputes a digital polyhedron from an OBJ file" << std::endl;
90 trace.info() << "\t- input.obj: choose your favorite mesh" << std::endl;
91 trace.info() << "\t- h [==1]: the digitization gridstep" << std::endl;
92 trace.info() << "\t- view [==7]: display vertices(1), edges(2), faces(4)" << std::endl;
93 string filename = examplesPath + "samples/lion.obj";
94 std::string fn = argc > 1 ? argv[ 1 ] : filename; //< vol filename
95 double h = argc > 2 ? atof( argv[ 2 ] ) : 1.0;
96 int view = argc > 3 ? atoi( argv[ 3 ] ) : 7;
97 // Read OBJ file
98 std::ifstream input( fn.c_str() );
100 bool ok = SurfaceMeshReader< RealPoint, RealVector >::readOBJ( input, surfmesh );
101 if ( ! ok )
102 {
103 trace.error() << "Unable to read obj file : " << fn << std::endl;
104 return 1;
105 }
106
107 QApplication application(argc,argv);
108 typedef Viewer3D<Space,KSpace> MViewer;
109 MViewer viewer;
110 viewer.setWindowTitle("digitalPolyhedronBuilder3D");
111 viewer.show();
112
113 Point lo(-500,-500,-500);
114 Point up(500,500,500);
115 DigitalConvexity< KSpace > dconv( lo, up );
117
118 auto vertices = std::vector<Point>( surfmesh.nbVertices() );
119 for ( auto v : surfmesh )
120 {
121 RealPoint p = (1.0 / h) * surfmesh.position( v );
122 Point q ( (Integer) round( p[ 0 ] ),
123 (Integer) round( p[ 1 ] ),
124 (Integer) round( p[ 2 ] ) );
125 vertices[ v ] = q;
126 }
127 std::set< Point > faces_set, edges_set;
128 auto faceVertices = surfmesh.allIncidentVertices();
129 auto edgeVertices = surfmesh.allEdgeVertices();
130
131 trace.beginBlock( "Computing polyhedron" );
132 for ( int f = 0; f < surfmesh.nbFaces(); ++f )
133 {
134 PointRange X;
135 for ( auto v : faceVertices[ f ] )
136 X.push_back( vertices[ v ] );
137 auto F = dconv.envelope( X, Algorithm::DIRECT );
138 faces_set.insert( F.cbegin(), F.cend() );
139 }
140 for ( int e = 0; e < surfmesh.nbEdges(); ++e )
141 {
142 PointRange X =
143 { vertices[ edgeVertices[ e ].first ],
144 vertices[ edgeVertices[ e ].second ] };
145 auto E = dconv.envelope( X, Algorithm::DIRECT );
146 edges_set.insert( E.cbegin(), E.cend() );
147 }
148 trace.endBlock();
149 std::vector< Point > face_points, edge_points;
150 std::vector< Point > vertex_points = vertices;
151 std::sort( vertex_points.begin(), vertex_points.end() );
152 std::set_difference( faces_set.cbegin(), faces_set.cend(),
153 edges_set.cbegin(), edges_set.cend(),
154 std::back_inserter( face_points ) );
155 std::set_difference( edges_set.cbegin(), edges_set.cend(),
156 vertex_points.cbegin(), vertex_points.cend(),
157 std::back_inserter( edge_points ) );
158 auto total = vertex_points.size() + edge_points.size() + face_points.size();
159 trace.info() << "#vertex points=" << vertex_points.size() << std::endl;
160 trace.info() << "#edge points=" << edge_points.size() << std::endl;
161 trace.info() << "#face points=" << face_points.size() << std::endl;
162 trace.info() << "#total points=" << total << std::endl;
163
164 // display everything
165 Color colors[] = { Color::Black, Color( 100, 100, 100 ), Color( 200, 200, 200 ) };
166 if ( view & 0x1 )
167 {
168 viewer.setLineColor( colors[ 0 ] );
169 viewer.setFillColor( colors[ 0 ] );
170 for ( auto p : vertices ) viewer << p;
171 }
172 if ( view & 0x2 )
173 {
174 viewer.setLineColor( colors[ 1 ] );
175 viewer.setFillColor( colors[ 1 ] );
176 for ( auto p : edge_points ) viewer << p;
177 }
178 if ( view & 0x4 )
179 {
180 viewer.setLineColor( colors[ 2 ] );
181 viewer.setFillColor( colors[ 2 ] );
182 for ( auto p : face_points ) viewer << p;
183 }
184 viewer << MViewer::updateDisplay;
185 return application.exec();
186
187}
Structure representing an RGB triple with alpha component.
Definition: Color.h:68
static const Color Black
Definition: Color.h:413
PointRange envelope(const PointRange &Z, EnvelopeAlgorithm algo=EnvelopeAlgorithm::DIRECT) const
Aim: Implements basic operations that will be used in Point and Vector classes.
Definition: PointVector.h:593
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...
std::vector< Point > PointRange
Trace trace
Definition: Common.h:154
std::pair< typename graph_traits< DGtal::DigitalSurface< TDigitalSurfaceContainer > >::vertex_iterator, typename graph_traits< DGtal::DigitalSurface< TDigitalSurfaceContainer > >::vertex_iterator > vertices(const DGtal::DigitalSurface< TDigitalSurfaceContainer > &digSurf)
static bool readOBJ(std::istream &input, SurfaceMesh &smesh)
Aim: Represents an embedded mesh as faces and a list of vertices. Vertices may be shared among faces ...
Definition: SurfaceMesh.h:92
Size nbFaces() const
Definition: SurfaceMesh.h:288
Size nbEdges() const
Definition: SurfaceMesh.h:284
const std::vector< Vertices > & allIncidentVertices() const
Definition: SurfaceMesh.h:362
RealPoint & position(Vertex v)
Definition: SurfaceMesh.h:637
Size nbVertices() const
Definition: SurfaceMesh.h:280
const std::vector< VertexPair > & allEdgeVertices() const
Definition: SurfaceMesh.h:381
MyPointD Point
Definition: testClone2.cpp:383

References DGtal::SurfaceMesh< TRealPoint, TRealVector >::allEdgeVertices(), DGtal::SurfaceMesh< TRealPoint, TRealVector >::allIncidentVertices(), DGtal::Trace::beginBlock(), DGtal::Color::Black, DGtal::Trace::endBlock(), DGtal::DigitalConvexity< TKSpace >::envelope(), DGtal::Trace::error(), DGtal::Trace::info(), DGtal::SurfaceMesh< TRealPoint, TRealVector >::nbEdges(), DGtal::SurfaceMesh< TRealPoint, TRealVector >::nbFaces(), DGtal::SurfaceMesh< TRealPoint, TRealVector >::nbVertices(), DGtal::SurfaceMesh< TRealPoint, TRealVector >::position(), DGtal::SurfaceMeshReader< TRealPoint, TRealVector >::readOBJ(), DGtal::Viewer3D< TSpace, TKSpace >::show(), and DGtal::trace.