Update based on minutes of the 03/14/2008 meeting

This commit is contained in:
Laurent Saboret 2008-04-11 11:17:00 +00:00
parent fdfaa9e4eb
commit f9283d5bdd
1 changed files with 28 additions and 13 deletions

View File

@ -2,32 +2,47 @@ Analysis
- len diag of bbox, etc., see bounding_box(begin,beyond) in PCA component - len diag of bbox, etc., see bounding_box(begin,beyond) in PCA component
- average spacing (KNN) - average spacing (KNN)
- std statistical measures: centroid(begin,beyond), std dev, etc. - std statistical measures: centroid(begin,beyond), std dev, etc.
- lfs estimate (pole approach + arbitrary query points using KNN) - lfs estimate (pole approach + arbitrary query points using KNN) (pierre)
Processing Processing
- smoothing (via jet-fitting + reprojection) - smoothing (via jet-fitting + reprojection) (pierre)
- outlier removal (to check which one is easy with CGAL components) - outlier removal (to check which one is easy with CGAL components) (laurent)
- decimate point sets (laurent)
Normal estimation Normal estimation
- KNN + point-based PCA - KNN + point-based PCA (done)
- KNN + jet fitting - KNN + jet fitting (done)
- Voronoi + pole (pierre) - Voronoi + poles (pierre)
- Voronoi + tet-based PCA (pierre) - Voronoi + tet-based PCA (pierre)
Normal orientation Normal orientation
- MST (laurent) - MST (done)
- pole-based (frederic?) - pole-based (frederic?)
Implicit function Implicit function
- Poisson - Poisson (done)
- Algebraic point set surfaces - Algebraic point set surfaces (laurent)
Contouring Implicit function contouring
- Delaunay refinement & filtering - Delaunay refinement & filtering (Surface_mesher) (done)
- Marching Cubes ? - Integration of Marching Cubes? (laurent)
Delaunay-based contouring
- Integration of "Da - Cohen-Steiner" (laurent)
In addition: Integration of "Da - Cohen-Steiner" In addition:
Concepts
- ReconstructionImplicitFunction concept (to be refined) (laurent)
- Algorithms are independent global functions (no concepts)
- Output formats concept to be defined (laurent?)
Demos, examples and tests
- Command line tests (pierre + laurent)
- MFC demo (to be removed?) (laurent)
- Qt demo (laurent)