Skip to content

dcoeurjo/SGP-GraduateSchool-digitalgeometry

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
img
 
 
 
 
src
 
 
vol
 
 
 
 
 
 

SGP-GraduateSchool-digitalgeometry

C/C++ CI

This repository contains material for the "Digital Geometry" talk at the Graduate School of the Symposium on Geometry Processing. It contains the slides of the lecture and C++ codes used to generate the images / animations (using DGtal).

Abstract

Digital Geometry is about the processing of topological and geometrical objects defined in regular lattices (e.g. collection of voxels in 3d). Whereas representing quantities on regular, hierarchical or adaptive grids is a classical approach to spatially discretize a domain, processing the geometry of such objects requires us to revisit classical results from continuous or discrete mathematics. In this course, we will review tools and results that have been designed specifically to the geometry processing in Z^d. More precisely, we will present how processing regularly spaced data with integer coordinate embeddings may impact computational geometry algorithms, and how stability results (multigrid convergence) of differential quantities estimators (curvature tensor, Laplace-Beltrami,..) on boundaries of digital objects can be designed. Finally, we will present some elements of discrete calculus on digital surfaces. Lastly, we will briefly give a demo of the DGtal library (dgtal.org) which contains a wide class of algorithms dedicated to the processing of such specific data.

How to build the examples

Just clone this repository and its submodules:

git clone https://github.com/dcoeurjo/SGP-GraduateSchool-digitalgeometry.git
git submodule update  --recursive --init

Then you can compile the files using cmake/make (using linux/macOS Makefile target, check you cmake -h Generators for alternative platform):

mkdir build
cd build
cmake ..  -DCMAKE_BUILD_TYPE=Release
make

Note: to compile DGtal, you would need boost (only headers) and zlib. The project heavily uses polyscope for the visualization and UI.

Slides

Authors

Annotated bibliography

WARNING: Work in progress

Topology, preserving homotopy

  • [Bertrand94] Bertrand, Gilles. "Simple points, topological numbers and geodesic neighborhoods in cubic grids." Pattern recognition letters 15.10 (1994): 1003-1011.

    • homotopic thinning on voxel shapes baded on simple points in 2D/3D
    • easy definitions based on connected components of foreground / background
  • [CB08] Couprie, Michel, and Gilles Bertrand. "New characterizations of simple points in 2D, 3D, and 4D discrete spaces." IEEE Transactions on Pattern Analysis and Machine Intelligence 31.4 (2008): 637-648.

    • simple points up to 4D
  • [BC94] Bertrand, Gilles, and Michel Couprie. "On parallel thinning algorithms: minimal non-simple sets, P-simple points and critical kernels." Journal of Mathematical Imaging and Vision 35.1 (2009): 23-35.

    • recall on critical kernels,
    • how they induce P-simple points, i.e. points that can be removed in parallel while preserving homotopy
  • [YLJ18] Yan, Yajie, David Letscher, and Tao Ju. "Voxel cores: Efficient, robust, and provably good approximation of 3d medial axes." ACM Transactions on Graphics (TOG) 37.4 (2018): 1-13.

    • homotopy equivalence between a (smooth enough) shape and its voxelization,
    • definition of an homotopic medial axis (voxel core).

Geometry of digitized surface vs continuous surface, multigrid convergence

  • [LT16] Lachaud, Jacques-Olivier, and Boris Thibert. "Properties of gauss digitized shapes and digital surface integration." Journal of Mathematical Imaging and Vision 54.2 (2016): 162-180.

    • hausdorff closeness between both continuous surface and digitized surface
    • locii of non-injectivity of projection operator, reduces to zero asymptotically
    • locii of non-manifoldness of digitized surface, reduces to zero asymptotically
    • multigrid convergence of digital integral
  • [CLL14] Coeurjolly, David, Jacques-Olivier Lachaud, and Jérémy Levallois. "Multigrid convergent principal curvature estimators in digital geometry." Computer Vision and Image Understanding 129 (2014): 27-41.

    • digital integral invariant estimators (II)
    • multigrid convergence of principal curvatures and principal directions II estimators
  • [LTC17] Lachaud, Jacques-Olivier, David Coeurjolly, and Jérémy Levallois. "Robust and convergent curvature and normal estimators with digital integral invariants." Modern Approaches to Discrete Curvature. Springer, Cham, 2017. 293-348.

    • extension of multigrid convergence results of [CLL14] to more general surfaces
    • multigrid convergence of normal vector estimator
  • [LRT19] Lachaud, Jacques-Olivier, Pascal Romon, and Boris Thibert. "Corrected curvature measures." (2019).

    • new mean and Gaussian curvature estimators based on corrected normal current
    • valid for any piecewise C^1-smooth surface (even with singularities), like digital surfaces, but also like polyhedral surfaces
    • stability theorem + multigrid convergence for digital surface + multigrid convergent normal estimator
  • [LRTC20] Lachaud, Jacques-Olivier, Pascal Romon, Boris Thibert, and David Coeurjolly. "Interpolated corrected curvature measures for polygonal surfaces." Computer Graphics Forum. Vol. 39. No. 5. 2020.

    • simple analytic formula of corrected normal current for triangulated and quadrangulated surfaces

Topology of digital surfaces

  • [Herman93] Herman, Gabor T. "Oriented surfaces in digital spaces." CVGIP: Graphical Models and Image Processing 55.5 (1993): 381-396.

    • classic papers about digital surfaces
    • consistency of boundaries with interior/exterior when using different topology for object/background
    • digital surfaces can be tracked
  • [Udupa94] Udupa, Jayaram K. "Multidimensional digital boundaries." CVGIP: Graphical Models and Image Processing 56.4 (1994): 311-323.

    • digital surfaces and boundaries in Z^d
    • tracking algorithms
  • [LM00] Lachaud, Jacques-Olivier, and Annick Montanvert. "Continuous analogs of digital boundaries: A topological approach to iso-surfaces." Graphical models 62.3 (2000): 129-164.

    • dual of digital surfaces is a "marching-cubes"-like isosurface
    • combinatorial manifold isosurfaces in arbitrary dimension
  • [Lachaud03] Jacques-Olivier, Lachaud. "Coding cells of digital spaces: a framework to write generic digital topology algorithms." Electronic Notes in Discrete Mathematics 12 (2003): 337-348.

    • the main basis for the topology modules of DGtal
    • defines cells and boundary operators to visit digital objects and surfaces in Z^d

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published