|
Jafar
|
! Delaunay class.
This class is used to triangule an image of 3D points using the Delaunay's method.
Definition at line 44 of file delaunay.hpp.
#include <delaunay.hpp>
Public Member Functions | |
| Delaunay (double xmin_, double ymin_, double xmax_, double ymax_, double zref_=0.0) | |
| Construct a new Delaunay. | |
| void | addNode (int id, double x_, double y_, double z_=0) |
| add a new point to triangule | |
| int | nbTriangles () const |
| to get the number of triangle | |
| std::string | getTriangles () |
| to get the triangles | |
| std::string | getTrianglesNizar () |
| void | trianguleIm3D (jafar::model3d::Image3DTemplate< jafar::model3d::Point3D > &im3d) |
| to triangule an im3D from the module model3d | |
| void | createMap3D (char *worldFile) |
| to write the triangles in a file | |
Protected Types | |
|
typedef std::list< DNode * > ::iterator | nodes_it |
Protected Attributes | |
| std::list< DNode * > | nodes |
| hed::Triangulation | triangulation |
| jafar::delaunay::Delaunay::Delaunay | ( | double | xmin_, |
| double | ymin_, | ||
| double | xmax_, | ||
| double | ymax_, | ||
| double | zref_ = 0.0 |
||
| ) |
Construct a new Delaunay.
| xmin_ | the x minimun of the reconstruction space |
| ymin_ | the y minimun of the reconstruction space |
| xmax_ | the x maximun of the reconstruction space |
| ymax_ | the y maximun of the reconstruction space |
| zref_ | the z reference of the reconstruction space |
| Generated on Wed Oct 15 2014 00:37:34 for Jafar by doxygen 1.7.6.1 |
|