SlideShare ist ein Scribd-Unternehmen logo
1 von 17
Downloaden Sie, um offline zu lesen
Representing Simplicial Complexes with
Mangroves
David Canino, Leila De Floriani
Department of Computer Science, Robotics, Bioengeneering, and Systems Engineering (DIBRIS),
Universitá degli Studi di Genova, Italy
David Canino, Leila De Floriani (DIBRIS) 1 / 17
The Mangrove Topological Data Structure Framework
What we propose - The Mangrove TDS Framework
Fast prototyping of topological data structures
for simplicial complexes under the same API.
Extensible and graph-based representations of
connectivity information (mangroves).
Implicit representations of those simplices, not
directly encoded (ghost simplices).
We have designed several data structures with complementary properties including:
the Incidence Simplicial (IS) data structure, De Floriani et all., IMR 2010
the IA∗
data structure, Canino et all., SMI 2011
which are efficient for manipulating non-manifolds of any dimension (with pieces of different
dimensionality), Canino, 2012 (PhD. Thesis)
Our C++ implementations are contained in the Mangrove TDS Library, released as GPL v3 software for the
scientific community at
http://mangrovetds.sourceforge.net
David Canino, Leila De Floriani (DIBRIS) 2 / 17
Context & Motivation
Starting point
Simplicial complexes are common in many
applications (FEM, C&G, . . . )
Efficient representations for extracting and
modifying their connectivity information
What we have?
Many topological data structures:
Garimella, 2002 + course
De Floriani and Hui, 2005 (survey)
De Floriani et all., 2010
Canino et all., 2011
More references in our paper!
optimized for a specific task.
Main Issue
Not much attention towards rapid prototyping of
topological data structures under the same API.
David Canino, Leila De Floriani (DIBRIS) 3 / 17
Context & Motivation (con’td)
Very few frameworks support rapid prototyping of representations:
OpenMesh OpenVolumeMesh CGoGN CGAL Mangrove TDS
Types of shapes cell cell cell cell simplicial/cell
Dimension of shapes 2 up to 3 any any any
Representation OM OVM C-Maps many any
Extensibility no no no modules yes
Non-manifolds partially yes partially yes yes
Rapid prototyping is important in the manifacturing.
What do we want in this context?
Generic prototype of topological data structures:
customized in order to simulate any topological
representation efficiently (design)
dynamically replaced at run-time (plugin) wrt
any modeling need (optimization)
well-defined and unique API (data hiding)
short learning curve and easy-to-use.
David Canino, Leila De Floriani (DIBRIS) 4 / 17
Context & Motivation (con’td)
Advantages?
Complete analysis of topological data structures within the same context
Common basis for coherent and fair comparisons wrt efficiency of topological queries
Simplification of programmers’ work (unique API)
No rewriting a program from scratch when replacing internal representations completely.
Possibility to replace completely representations, not only few details.
Simulations of representations without a relevant overhead.
This can be defined by exploiting topological relations for any simplicial (cell) complex:
any domain, including non-manifolds
pieces of different dimensionality
any dimension (dimension-independent)
David Canino, Leila De Floriani (DIBRIS) 5 / 17
Representing the Connectivity Information
Key idea
Connectivity of simplices (vertices, edges, triangles,. . . ) in any simplicial complex Σ (1-skeleton, tri, and tet
meshes,. . . ) is described by topological relations.
e
v
6
v
v
v
v
v
1
2
3
4
5
e
e
e
e
7
8
9
10
f
f
f
f
f
1
2
3
4
5
f
f
f
f
f
e
e
e
e
e
1
2
3
4
5
Topological relation ∼k,m (σ, σ )
Let Σj
be the collection of j-simplices in Σ,
and ∼k,m⊆ Σk
× Σm
, then:
Boundary relations
If σ is a face of σ, e.g., ∼2,0 (f1, v) or ∼2,1 (f3, e8)
Co-boundary relations (incident simplices)
If σ is a face of σ , e.g., ∼0,2 (v, f1) or ∼1,2 (e8, f3)
Adjacency relations
∼k,k (σ, σ ), with k = 0, if σ and σ shares a
(k − 1)-simplex
∼0,0 (σ, σ ), if an edge connects σ and σ
For instance, ∼0,0 (v, v3) or ∼2,2 (f1, f3)
David Canino, Leila De Floriani (DIBRIS) 6 / 17
Representing the Connectivity Information as a Graph
Key Idea
Connectivity information can be described as a directed graph GΣ = {NΣ, AΣ} where:
each node nσ corresponds to a simplex σ
each oriented arc (nσ, nσ ) corresponds to ∼k,m (σ, σ )
Graph GΣ is expensive to be encoded, but it is our generic prototype!
Topological Data Structure MΣ
Subset of simplices
Subset of topological relations:
boundary relations
co-boundary relations
adjacency relations
→
Mangrove GM
Σ
Graph-based representation of MΣ (as above)
Spanning subgraph of GΣ, formed by:
boundary graph
co-boundary graph
adjacency graph
Consequence
Representing any topological data structure MΣ ≡ representing mangrove GM
Σ , regardless:
what simplices and topological relations are encoded in MΣ
the dimension and the type of domain
Everything is a mangrove!
David Canino, Leila De Floriani (DIBRIS) 7 / 17
Generic Encoding of Mangroves and Operations
Any mangrove GM
Σ is encoded by any adjacency list data structure for graphs (well known).
Encoding of Node nσ ≡ simplex σ
Unique topological entity to be encoded
Endpoints of arcs in GM
Σ outgoing from nσ
Properties associated with nodes
Collection of Nodes (indices-based)
Dynamic arrays, one for each collection of
simplices in MΣ
Garbage collector and safe iterators
This encoding satisfies requirements in Sieger & Botsch, IMR 2011.
Common API (at least)
Topological queries on any simplex σ:
BOUNDARY - faces of σ
STAR - simplices incident at σ
ADJACENCY - simplices adjacent to σ
LINK - boundary of STAR(σ), not incident
at σ
IS-MANIFOLD - checking if σ is manifold
are breadth-first traversals of GM
Σ .
What we need for modeling MΣ ?
Only the content of mangrove GM
Σ
Implementation of topological queries
Consequences (except some cases)
No overhead for simulating MΣ
Transparent API (data hiding)
Plugin
David Canino, Leila De Floriani (DIBRIS) 8 / 17
The IS data structure (De Floriani et all., IMR 2010)
The IS data structure (The IS-graph)
Simplicial complexes with pieces of
different dimensionality
Dimension-independent
All simplices are encoded
Global mangrove Immediate Boundary relations ∼p,p−1 for
any p-simplex
Co-boundary relations ∼∗
p,p+1 for any
p-simplex
David Canino, Leila De Floriani (DIBRIS) 9 / 17
The IA∗
data structure (Canino et all., SMI 2011)
The IA∗
data structure (The IA∗
-graph)
Extends the Indexed data structure
to non-manifolds of any dimension
Simplicial complexes with pieces of
different dimensionality
Only vertices and top simplices (no
simplices incident at)
Partial mangrove
5
3
6
7
4
1
2
8
9
10
11
13
12
14
Boundary relations ∼p,0 for top simplices
Co-boundary relations ∼∗
0,p for vertices
Adjacency relations ∼∗
p,p and ∼∗
p−1,p for top
simplices
David Canino, Leila De Floriani (DIBRIS) 10 / 17
Implicit Representations of Simplices
API Problem with the IA∗
data structure
Not all simplices are encoded in MΣ
What’s their representation in the API?
Solution
Implicit representation of these simplices
Simple and efficient in space and time
First attempt: Cell Tuples
Based on the incidence graph (IG),
Edelsbrunner, 1987 for d-complexes
Maximal paths from vertices to top
simplices in the IG
Redundant connectivity information
Length proportional to d, no scalable
Cell Tuple (in red)
Solving Drawbacks . . .
Adjacency relations are restricted to top simplices (recall)
Quick connections among a simplex σ and top simplices incident at σ
Avoiding complete traversals in the incidence graph
David Canino, Leila De Floriani (DIBRIS) 11 / 17
Ghost Simplices
Key Idea
Any p-simplex σ is a p-face of an arbitrary
top t-simplex σ incident at σ
Enumeration of simplices and faces of σ
Definition
Always defined as a 4-tuple [t, i, p, j], where:
t is the dimension of σ
i is the unique identifier of σ
p is the dimension of σ
j is the local identifier of σ as p-face of σ
Ghost simplex [3, 0, 1, 3] (in red)
Ghost simplex [3, 0, 3, 0] is the top 3-simplex
Properties
scalable to high dimensions
one ghost simplex for each top simplex
incident at σ (flights in sharing code)
Consequences
Input and output of topological queries are
ghost simplices
New organization for topological queries
David Canino, Leila De Floriani (DIBRIS) 12 / 17
Ghost Simplices (cont’d)
New Organization of Topological Queries
1 retrieve all top simplices σ incident at σ
2 retrieve faces of σ involved in the query of
interest (as ghost simplices wrt σ )
What we encode
For each dimension t of top simplices:
incidence graph Ht describing topology of
faces (ghost simplices) for a top t-simplex
local indices j of faces stored in Ht
Consequences
Faces of interest are retrieved by breadth-first
traversals of Ht
Boundary relations
Co-boundary relations
Faces [3, x, 2, 1], [3, x, 2, 2], and [3, x, 3, 0] are incident at [3, x, 1, 3].
David Canino, Leila De Floriani (DIBRIS) 13 / 17
Using Ghost Simplices in our Mangrove TDS Library
Ghost simplices improves the efficiency of topological queries in the IA∗
data structure:
30% faster 30% faster
only 10% slower up to 3X faster
The Mangrove TDS Library is a GPL v3 software: http://mangrovetds.sourceforge.net
David Canino, Leila De Floriani (DIBRIS) 14 / 17
Using Ghost Simplices . . . (cont’d)
Overhead Cd
for graphs Ht
p
t=2
t
p=2
(p + 1)
t + 1
p + 1
does not depend on the
number of top simplices
much less than 1%
Storage costs of the IG, IS, and IA∗
data structures within our framework:
d Cd
s0 sd SIA∗ SIS SIG
2 18 2.8M 5.6M 22.4M 38M 44.8M
3 74 1.4M 4.2M 19.6M 68.6M 92.1M
4 224 0.7M 2.7M 14.9M 104.3M 149M
5 596 0.3M 1.4M 9M 123.6M 188M
6 1.5k 0.1M 0.7M 5.3M 143.1M 222.6M
7 3.5k 75K 0.5M 4.3M 228M 365.5M
8 8.1k 34K 0.3M 2.5M 260M 425M
Generalization of the Sierpinski shape in high dimensions
Small overhead implies great expressive power and compactness in high dimensions.
David Canino, Leila De Floriani (DIBRIS) 15 / 17
Conclusions & Future Work
What we proposed - The Mangrove TDS Framework
Fast prototyping of topological data structures
for simplicial complexes under the same API.
Extensible and graph-based representations of
connectivity information (mangroves).
Implicit representations of those simplices, not
directly encoded (ghost simplices).
The Mangrove TDS Library, released as GPL v3 software for the scientific community at
http://mangrovetds.sourceforge.net
There is a lot of space and room for improvements:
new plugins
extensions to cell complexes (e.g., quad and hex meshes)
new editing operators (homology-preserving and -modifying operators)
applications in high dimensions
distributed and parallel version
. . .
David Canino, Leila De Floriani (DIBRIS) 16 / 17
Acknowledgements
We thank:
anonymous reviewers for their useful suggestions
the Italian Ministry of Education and Research (the PRIN 2009 program)
the National Science Foundation (contract IIS-1116747)
Prof. Vijay Natarajan, Indian Institute of Science, for the Sierpinski shape
These slides are available on http://www.disi.unige.it/person/CaninoD
Thank you much for your attention!
David Canino, Leila De Floriani (DIBRIS) 17 / 17

Weitere ähnliche Inhalte

Was ist angesagt?

Fcv learn yu
Fcv learn yuFcv learn yu
Fcv learn yuzukun
 
Winter school-pq2016v2
Winter school-pq2016v2Winter school-pq2016v2
Winter school-pq2016v2Ludovic Perret
 
[Paper] Multiscale Vision Transformers(MVit)
[Paper] Multiscale Vision Transformers(MVit)[Paper] Multiscale Vision Transformers(MVit)
[Paper] Multiscale Vision Transformers(MVit)Susang Kim
 
Including MPEG-4 3D Graphics in your Application
Including MPEG-4 3D Graphics in your ApplicationIncluding MPEG-4 3D Graphics in your Application
Including MPEG-4 3D Graphics in your ApplicationAlpen-Adria-Universität
 
Convolutional Neural Networks (D1L3 2017 UPC Deep Learning for Computer Vision)
Convolutional Neural Networks (D1L3 2017 UPC Deep Learning for Computer Vision)Convolutional Neural Networks (D1L3 2017 UPC Deep Learning for Computer Vision)
Convolutional Neural Networks (D1L3 2017 UPC Deep Learning for Computer Vision)Universitat Politècnica de Catalunya
 
Lifelong / Incremental Deep Learning - Ramon Morros - UPC Barcelona 2018
Lifelong / Incremental Deep Learning - Ramon Morros - UPC Barcelona 2018Lifelong / Incremental Deep Learning - Ramon Morros - UPC Barcelona 2018
Lifelong / Incremental Deep Learning - Ramon Morros - UPC Barcelona 2018Universitat Politècnica de Catalunya
 
Conference PhD & DLA symposium 2009
Conference PhD & DLA symposium 2009Conference PhD & DLA symposium 2009
Conference PhD & DLA symposium 2009Jaroslav Broz
 
[Ris cy business]
[Ris cy business][Ris cy business]
[Ris cy business]Dino, llc
 
Image Encryption Using Advanced Hill Cipher Algorithm
Image Encryption Using Advanced Hill Cipher AlgorithmImage Encryption Using Advanced Hill Cipher Algorithm
Image Encryption Using Advanced Hill Cipher AlgorithmIDES Editor
 

Was ist angesagt? (13)

Deep 3D Visual Analysis - Javier Ruiz-Hidalgo - UPC Barcelona 2017
Deep 3D Visual Analysis - Javier Ruiz-Hidalgo - UPC Barcelona 2017Deep 3D Visual Analysis - Javier Ruiz-Hidalgo - UPC Barcelona 2017
Deep 3D Visual Analysis - Javier Ruiz-Hidalgo - UPC Barcelona 2017
 
Literature Review
Literature ReviewLiterature Review
Literature Review
 
Cbls thuan
Cbls thuanCbls thuan
Cbls thuan
 
Attention Models (D3L6 2017 UPC Deep Learning for Computer Vision)
Attention Models (D3L6 2017 UPC Deep Learning for Computer Vision)Attention Models (D3L6 2017 UPC Deep Learning for Computer Vision)
Attention Models (D3L6 2017 UPC Deep Learning for Computer Vision)
 
Fcv learn yu
Fcv learn yuFcv learn yu
Fcv learn yu
 
Winter school-pq2016v2
Winter school-pq2016v2Winter school-pq2016v2
Winter school-pq2016v2
 
[Paper] Multiscale Vision Transformers(MVit)
[Paper] Multiscale Vision Transformers(MVit)[Paper] Multiscale Vision Transformers(MVit)
[Paper] Multiscale Vision Transformers(MVit)
 
Including MPEG-4 3D Graphics in your Application
Including MPEG-4 3D Graphics in your ApplicationIncluding MPEG-4 3D Graphics in your Application
Including MPEG-4 3D Graphics in your Application
 
Convolutional Neural Networks (D1L3 2017 UPC Deep Learning for Computer Vision)
Convolutional Neural Networks (D1L3 2017 UPC Deep Learning for Computer Vision)Convolutional Neural Networks (D1L3 2017 UPC Deep Learning for Computer Vision)
Convolutional Neural Networks (D1L3 2017 UPC Deep Learning for Computer Vision)
 
Lifelong / Incremental Deep Learning - Ramon Morros - UPC Barcelona 2018
Lifelong / Incremental Deep Learning - Ramon Morros - UPC Barcelona 2018Lifelong / Incremental Deep Learning - Ramon Morros - UPC Barcelona 2018
Lifelong / Incremental Deep Learning - Ramon Morros - UPC Barcelona 2018
 
Conference PhD & DLA symposium 2009
Conference PhD & DLA symposium 2009Conference PhD & DLA symposium 2009
Conference PhD & DLA symposium 2009
 
[Ris cy business]
[Ris cy business][Ris cy business]
[Ris cy business]
 
Image Encryption Using Advanced Hill Cipher Algorithm
Image Encryption Using Advanced Hill Cipher AlgorithmImage Encryption Using Advanced Hill Cipher Algorithm
Image Encryption Using Advanced Hill Cipher Algorithm
 

Ähnlich wie Representing Simplicial Complexes with Mangroves

Tools for Modeling and Analysis of Non-manifold Shapes
Tools for Modeling and Analysis of Non-manifold ShapesTools for Modeling and Analysis of Non-manifold Shapes
Tools for Modeling and Analysis of Non-manifold ShapesDavid Canino
 
Big Data and Small Devices by Katharina Morik
Big Data and Small Devices by Katharina MorikBig Data and Small Devices by Katharina Morik
Big Data and Small Devices by Katharina MorikBigMine
 
Graphical Model Selection for Big Data
Graphical Model Selection for Big DataGraphical Model Selection for Big Data
Graphical Model Selection for Big DataAlexander Jung
 
Citython presentation
Citython presentationCitython presentation
Citython presentationAnkit Tewari
 
Higher-order organization of complex networks
Higher-order organization of complex networksHigher-order organization of complex networks
Higher-order organization of complex networksDavid Gleich
 
Lucas Theis - Compressing Images with Neural Networks - Creative AI meetup
Lucas Theis - Compressing Images with Neural Networks - Creative AI meetupLucas Theis - Compressing Images with Neural Networks - Creative AI meetup
Lucas Theis - Compressing Images with Neural Networks - Creative AI meetupLuba Elliott
 
VLDB 2015 Tutorial: On Uncertain Graph Modeling and Queries
VLDB 2015 Tutorial: On Uncertain Graph Modeling and QueriesVLDB 2015 Tutorial: On Uncertain Graph Modeling and Queries
VLDB 2015 Tutorial: On Uncertain Graph Modeling and QueriesArijit Khan
 
Pattern learning and recognition on statistical manifolds: An information-geo...
Pattern learning and recognition on statistical manifolds: An information-geo...Pattern learning and recognition on statistical manifolds: An information-geo...
Pattern learning and recognition on statistical manifolds: An information-geo...Frank Nielsen
 
Applied parallel coordinates for logs and network traffic attack analysis
Applied parallel coordinates for logs and network traffic attack analysisApplied parallel coordinates for logs and network traffic attack analysis
Applied parallel coordinates for logs and network traffic attack analysisUltraUploader
 
FScaFi: A Core Calculus for Collective Adaptive Systems Programming
FScaFi: A Core Calculus for Collective Adaptive Systems ProgrammingFScaFi: A Core Calculus for Collective Adaptive Systems Programming
FScaFi: A Core Calculus for Collective Adaptive Systems ProgrammingRoberto Casadei
 
The Hidden Geometry of Multiplex Networks @ Next Generation Network Analytics
The Hidden Geometry of Multiplex Networks @ Next Generation Network Analytics The Hidden Geometry of Multiplex Networks @ Next Generation Network Analytics
The Hidden Geometry of Multiplex Networks @ Next Generation Network Analytics Kolja Kleineberg
 
Relation between Information Leakage and Combinatorial Quantities of Linear C...
Relation between Information Leakage and Combinatorial Quantities of Linear C...Relation between Information Leakage and Combinatorial Quantities of Linear C...
Relation between Information Leakage and Combinatorial Quantities of Linear C...Ryutaroh Matsumoto
 
Aggregation computation over distributed data streams(the final version)
Aggregation computation over distributed data streams(the final version)Aggregation computation over distributed data streams(the final version)
Aggregation computation over distributed data streams(the final version)Yueshen Xu
 
Macrocanonical models for texture synthesis
Macrocanonical models for texture synthesisMacrocanonical models for texture synthesis
Macrocanonical models for texture synthesisValentin De Bortoli
 
Self-Similarity in Complex Networks
Self-Similarity in Complex NetworksSelf-Similarity in Complex Networks
Self-Similarity in Complex Networksnorman_fahrer
 

Ähnlich wie Representing Simplicial Complexes with Mangroves (20)

Tools for Modeling and Analysis of Non-manifold Shapes
Tools for Modeling and Analysis of Non-manifold ShapesTools for Modeling and Analysis of Non-manifold Shapes
Tools for Modeling and Analysis of Non-manifold Shapes
 
Big Data and Small Devices by Katharina Morik
Big Data and Small Devices by Katharina MorikBig Data and Small Devices by Katharina Morik
Big Data and Small Devices by Katharina Morik
 
Graphical Model Selection for Big Data
Graphical Model Selection for Big DataGraphical Model Selection for Big Data
Graphical Model Selection for Big Data
 
190 195
190 195190 195
190 195
 
Citython presentation
Citython presentationCitython presentation
Citython presentation
 
Higher-order organization of complex networks
Higher-order organization of complex networksHigher-order organization of complex networks
Higher-order organization of complex networks
 
Lucas Theis - Compressing Images with Neural Networks - Creative AI meetup
Lucas Theis - Compressing Images with Neural Networks - Creative AI meetupLucas Theis - Compressing Images with Neural Networks - Creative AI meetup
Lucas Theis - Compressing Images with Neural Networks - Creative AI meetup
 
CLIM Program: Remote Sensing Workshop, Multilayer Modeling and Analysis of Co...
CLIM Program: Remote Sensing Workshop, Multilayer Modeling and Analysis of Co...CLIM Program: Remote Sensing Workshop, Multilayer Modeling and Analysis of Co...
CLIM Program: Remote Sensing Workshop, Multilayer Modeling and Analysis of Co...
 
40120140501004
4012014050100440120140501004
40120140501004
 
40120140501004
4012014050100440120140501004
40120140501004
 
VLDB 2015 Tutorial: On Uncertain Graph Modeling and Queries
VLDB 2015 Tutorial: On Uncertain Graph Modeling and QueriesVLDB 2015 Tutorial: On Uncertain Graph Modeling and Queries
VLDB 2015 Tutorial: On Uncertain Graph Modeling and Queries
 
Pattern learning and recognition on statistical manifolds: An information-geo...
Pattern learning and recognition on statistical manifolds: An information-geo...Pattern learning and recognition on statistical manifolds: An information-geo...
Pattern learning and recognition on statistical manifolds: An information-geo...
 
Applied parallel coordinates for logs and network traffic attack analysis
Applied parallel coordinates for logs and network traffic attack analysisApplied parallel coordinates for logs and network traffic attack analysis
Applied parallel coordinates for logs and network traffic attack analysis
 
HalifaxNGGs
HalifaxNGGsHalifaxNGGs
HalifaxNGGs
 
FScaFi: A Core Calculus for Collective Adaptive Systems Programming
FScaFi: A Core Calculus for Collective Adaptive Systems ProgrammingFScaFi: A Core Calculus for Collective Adaptive Systems Programming
FScaFi: A Core Calculus for Collective Adaptive Systems Programming
 
The Hidden Geometry of Multiplex Networks @ Next Generation Network Analytics
The Hidden Geometry of Multiplex Networks @ Next Generation Network Analytics The Hidden Geometry of Multiplex Networks @ Next Generation Network Analytics
The Hidden Geometry of Multiplex Networks @ Next Generation Network Analytics
 
Relation between Information Leakage and Combinatorial Quantities of Linear C...
Relation between Information Leakage and Combinatorial Quantities of Linear C...Relation between Information Leakage and Combinatorial Quantities of Linear C...
Relation between Information Leakage and Combinatorial Quantities of Linear C...
 
Aggregation computation over distributed data streams(the final version)
Aggregation computation over distributed data streams(the final version)Aggregation computation over distributed data streams(the final version)
Aggregation computation over distributed data streams(the final version)
 
Macrocanonical models for texture synthesis
Macrocanonical models for texture synthesisMacrocanonical models for texture synthesis
Macrocanonical models for texture synthesis
 
Self-Similarity in Complex Networks
Self-Similarity in Complex NetworksSelf-Similarity in Complex Networks
Self-Similarity in Complex Networks
 

Mehr von David Canino

Canino d2016stag slides
Canino d2016stag slidesCanino d2016stag slides
Canino d2016stag slidesDavid Canino
 
Dimension-Independent Data Structures for Simplicial Complexes
Dimension-Independent Data Structures for Simplicial ComplexesDimension-Independent Data Structures for Simplicial Complexes
Dimension-Independent Data Structures for Simplicial ComplexesDavid Canino
 
A Dimension-Independent and Extensible Framework for Huge Geometric Models
A Dimension-Independent and Extensible Framework for Huge Geometric ModelsA Dimension-Independent and Extensible Framework for Huge Geometric Models
A Dimension-Independent and Extensible Framework for Huge Geometric ModelsDavid Canino
 
An Extensible Framework for Modeling Simplicial Complexes
An Extensible Framework for Modeling Simplicial ComplexesAn Extensible Framework for Modeling Simplicial Complexes
An Extensible Framework for Modeling Simplicial ComplexesDavid Canino
 
A Decomposition-based Approach to Modeling and Understanding Arbitrary Shapes
A Decomposition-based Approach to Modeling and Understanding Arbitrary ShapesA Decomposition-based Approach to Modeling and Understanding Arbitrary Shapes
A Decomposition-based Approach to Modeling and Understanding Arbitrary ShapesDavid Canino
 
A Compact Representation for Topological Decompositions of Non-Manifold Shapes
A Compact Representation for Topological Decompositions of Non-Manifold ShapesA Compact Representation for Topological Decompositions of Non-Manifold Shapes
A Compact Representation for Topological Decompositions of Non-Manifold ShapesDavid Canino
 
Slides of my Master's Thesis
Slides of my Master's ThesisSlides of my Master's Thesis
Slides of my Master's ThesisDavid Canino
 

Mehr von David Canino (7)

Canino d2016stag slides
Canino d2016stag slidesCanino d2016stag slides
Canino d2016stag slides
 
Dimension-Independent Data Structures for Simplicial Complexes
Dimension-Independent Data Structures for Simplicial ComplexesDimension-Independent Data Structures for Simplicial Complexes
Dimension-Independent Data Structures for Simplicial Complexes
 
A Dimension-Independent and Extensible Framework for Huge Geometric Models
A Dimension-Independent and Extensible Framework for Huge Geometric ModelsA Dimension-Independent and Extensible Framework for Huge Geometric Models
A Dimension-Independent and Extensible Framework for Huge Geometric Models
 
An Extensible Framework for Modeling Simplicial Complexes
An Extensible Framework for Modeling Simplicial ComplexesAn Extensible Framework for Modeling Simplicial Complexes
An Extensible Framework for Modeling Simplicial Complexes
 
A Decomposition-based Approach to Modeling and Understanding Arbitrary Shapes
A Decomposition-based Approach to Modeling and Understanding Arbitrary ShapesA Decomposition-based Approach to Modeling and Understanding Arbitrary Shapes
A Decomposition-based Approach to Modeling and Understanding Arbitrary Shapes
 
A Compact Representation for Topological Decompositions of Non-Manifold Shapes
A Compact Representation for Topological Decompositions of Non-Manifold ShapesA Compact Representation for Topological Decompositions of Non-Manifold Shapes
A Compact Representation for Topological Decompositions of Non-Manifold Shapes
 
Slides of my Master's Thesis
Slides of my Master's ThesisSlides of my Master's Thesis
Slides of my Master's Thesis
 

Kürzlich hochgeladen

Unveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsUnveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsAhmed Mohamed
 
Unveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesUnveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesŁukasz Chruściel
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样umasea
 
PREDICTING RIVER WATER QUALITY ppt presentation
PREDICTING  RIVER  WATER QUALITY  ppt presentationPREDICTING  RIVER  WATER QUALITY  ppt presentation
PREDICTING RIVER WATER QUALITY ppt presentationvaddepallysandeep122
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)jennyeacort
 
React Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaReact Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaHanief Utama
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmSujith Sukumaran
 
英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作qr0udbr0
 
Cyber security and its impact on E commerce
Cyber security and its impact on E commerceCyber security and its impact on E commerce
Cyber security and its impact on E commercemanigoyal112
 
Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Velvetech LLC
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Andreas Granig
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtimeandrehoraa
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceBrainSell Technologies
 
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in NoidaBuds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in Noidabntitsolutionsrishis
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEEVICTOR MAESTRE RAMIREZ
 
Best Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdfBest Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdfIdiosysTechnologies1
 
Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Mater
 

Kürzlich hochgeladen (20)

Unveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsUnveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML Diagrams
 
Unveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesUnveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New Features
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
 
PREDICTING RIVER WATER QUALITY ppt presentation
PREDICTING  RIVER  WATER QUALITY  ppt presentationPREDICTING  RIVER  WATER QUALITY  ppt presentation
PREDICTING RIVER WATER QUALITY ppt presentation
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
 
React Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaReact Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief Utama
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalm
 
英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作
 
Cyber security and its impact on E commerce
Cyber security and its impact on E commerceCyber security and its impact on E commerce
Cyber security and its impact on E commerce
 
Advantages of Odoo ERP 17 for Your Business
Advantages of Odoo ERP 17 for Your BusinessAdvantages of Odoo ERP 17 for Your Business
Advantages of Odoo ERP 17 for Your Business
 
Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtime
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. Salesforce
 
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in NoidaBuds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEE
 
Best Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdfBest Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdf
 
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort ServiceHot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
 
Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)
 

Representing Simplicial Complexes with Mangroves

  • 1. Representing Simplicial Complexes with Mangroves David Canino, Leila De Floriani Department of Computer Science, Robotics, Bioengeneering, and Systems Engineering (DIBRIS), Universitá degli Studi di Genova, Italy David Canino, Leila De Floriani (DIBRIS) 1 / 17
  • 2. The Mangrove Topological Data Structure Framework What we propose - The Mangrove TDS Framework Fast prototyping of topological data structures for simplicial complexes under the same API. Extensible and graph-based representations of connectivity information (mangroves). Implicit representations of those simplices, not directly encoded (ghost simplices). We have designed several data structures with complementary properties including: the Incidence Simplicial (IS) data structure, De Floriani et all., IMR 2010 the IA∗ data structure, Canino et all., SMI 2011 which are efficient for manipulating non-manifolds of any dimension (with pieces of different dimensionality), Canino, 2012 (PhD. Thesis) Our C++ implementations are contained in the Mangrove TDS Library, released as GPL v3 software for the scientific community at http://mangrovetds.sourceforge.net David Canino, Leila De Floriani (DIBRIS) 2 / 17
  • 3. Context & Motivation Starting point Simplicial complexes are common in many applications (FEM, C&G, . . . ) Efficient representations for extracting and modifying their connectivity information What we have? Many topological data structures: Garimella, 2002 + course De Floriani and Hui, 2005 (survey) De Floriani et all., 2010 Canino et all., 2011 More references in our paper! optimized for a specific task. Main Issue Not much attention towards rapid prototyping of topological data structures under the same API. David Canino, Leila De Floriani (DIBRIS) 3 / 17
  • 4. Context & Motivation (con’td) Very few frameworks support rapid prototyping of representations: OpenMesh OpenVolumeMesh CGoGN CGAL Mangrove TDS Types of shapes cell cell cell cell simplicial/cell Dimension of shapes 2 up to 3 any any any Representation OM OVM C-Maps many any Extensibility no no no modules yes Non-manifolds partially yes partially yes yes Rapid prototyping is important in the manifacturing. What do we want in this context? Generic prototype of topological data structures: customized in order to simulate any topological representation efficiently (design) dynamically replaced at run-time (plugin) wrt any modeling need (optimization) well-defined and unique API (data hiding) short learning curve and easy-to-use. David Canino, Leila De Floriani (DIBRIS) 4 / 17
  • 5. Context & Motivation (con’td) Advantages? Complete analysis of topological data structures within the same context Common basis for coherent and fair comparisons wrt efficiency of topological queries Simplification of programmers’ work (unique API) No rewriting a program from scratch when replacing internal representations completely. Possibility to replace completely representations, not only few details. Simulations of representations without a relevant overhead. This can be defined by exploiting topological relations for any simplicial (cell) complex: any domain, including non-manifolds pieces of different dimensionality any dimension (dimension-independent) David Canino, Leila De Floriani (DIBRIS) 5 / 17
  • 6. Representing the Connectivity Information Key idea Connectivity of simplices (vertices, edges, triangles,. . . ) in any simplicial complex Σ (1-skeleton, tri, and tet meshes,. . . ) is described by topological relations. e v 6 v v v v v 1 2 3 4 5 e e e e 7 8 9 10 f f f f f 1 2 3 4 5 f f f f f e e e e e 1 2 3 4 5 Topological relation ∼k,m (σ, σ ) Let Σj be the collection of j-simplices in Σ, and ∼k,m⊆ Σk × Σm , then: Boundary relations If σ is a face of σ, e.g., ∼2,0 (f1, v) or ∼2,1 (f3, e8) Co-boundary relations (incident simplices) If σ is a face of σ , e.g., ∼0,2 (v, f1) or ∼1,2 (e8, f3) Adjacency relations ∼k,k (σ, σ ), with k = 0, if σ and σ shares a (k − 1)-simplex ∼0,0 (σ, σ ), if an edge connects σ and σ For instance, ∼0,0 (v, v3) or ∼2,2 (f1, f3) David Canino, Leila De Floriani (DIBRIS) 6 / 17
  • 7. Representing the Connectivity Information as a Graph Key Idea Connectivity information can be described as a directed graph GΣ = {NΣ, AΣ} where: each node nσ corresponds to a simplex σ each oriented arc (nσ, nσ ) corresponds to ∼k,m (σ, σ ) Graph GΣ is expensive to be encoded, but it is our generic prototype! Topological Data Structure MΣ Subset of simplices Subset of topological relations: boundary relations co-boundary relations adjacency relations → Mangrove GM Σ Graph-based representation of MΣ (as above) Spanning subgraph of GΣ, formed by: boundary graph co-boundary graph adjacency graph Consequence Representing any topological data structure MΣ ≡ representing mangrove GM Σ , regardless: what simplices and topological relations are encoded in MΣ the dimension and the type of domain Everything is a mangrove! David Canino, Leila De Floriani (DIBRIS) 7 / 17
  • 8. Generic Encoding of Mangroves and Operations Any mangrove GM Σ is encoded by any adjacency list data structure for graphs (well known). Encoding of Node nσ ≡ simplex σ Unique topological entity to be encoded Endpoints of arcs in GM Σ outgoing from nσ Properties associated with nodes Collection of Nodes (indices-based) Dynamic arrays, one for each collection of simplices in MΣ Garbage collector and safe iterators This encoding satisfies requirements in Sieger & Botsch, IMR 2011. Common API (at least) Topological queries on any simplex σ: BOUNDARY - faces of σ STAR - simplices incident at σ ADJACENCY - simplices adjacent to σ LINK - boundary of STAR(σ), not incident at σ IS-MANIFOLD - checking if σ is manifold are breadth-first traversals of GM Σ . What we need for modeling MΣ ? Only the content of mangrove GM Σ Implementation of topological queries Consequences (except some cases) No overhead for simulating MΣ Transparent API (data hiding) Plugin David Canino, Leila De Floriani (DIBRIS) 8 / 17
  • 9. The IS data structure (De Floriani et all., IMR 2010) The IS data structure (The IS-graph) Simplicial complexes with pieces of different dimensionality Dimension-independent All simplices are encoded Global mangrove Immediate Boundary relations ∼p,p−1 for any p-simplex Co-boundary relations ∼∗ p,p+1 for any p-simplex David Canino, Leila De Floriani (DIBRIS) 9 / 17
  • 10. The IA∗ data structure (Canino et all., SMI 2011) The IA∗ data structure (The IA∗ -graph) Extends the Indexed data structure to non-manifolds of any dimension Simplicial complexes with pieces of different dimensionality Only vertices and top simplices (no simplices incident at) Partial mangrove 5 3 6 7 4 1 2 8 9 10 11 13 12 14 Boundary relations ∼p,0 for top simplices Co-boundary relations ∼∗ 0,p for vertices Adjacency relations ∼∗ p,p and ∼∗ p−1,p for top simplices David Canino, Leila De Floriani (DIBRIS) 10 / 17
  • 11. Implicit Representations of Simplices API Problem with the IA∗ data structure Not all simplices are encoded in MΣ What’s their representation in the API? Solution Implicit representation of these simplices Simple and efficient in space and time First attempt: Cell Tuples Based on the incidence graph (IG), Edelsbrunner, 1987 for d-complexes Maximal paths from vertices to top simplices in the IG Redundant connectivity information Length proportional to d, no scalable Cell Tuple (in red) Solving Drawbacks . . . Adjacency relations are restricted to top simplices (recall) Quick connections among a simplex σ and top simplices incident at σ Avoiding complete traversals in the incidence graph David Canino, Leila De Floriani (DIBRIS) 11 / 17
  • 12. Ghost Simplices Key Idea Any p-simplex σ is a p-face of an arbitrary top t-simplex σ incident at σ Enumeration of simplices and faces of σ Definition Always defined as a 4-tuple [t, i, p, j], where: t is the dimension of σ i is the unique identifier of σ p is the dimension of σ j is the local identifier of σ as p-face of σ Ghost simplex [3, 0, 1, 3] (in red) Ghost simplex [3, 0, 3, 0] is the top 3-simplex Properties scalable to high dimensions one ghost simplex for each top simplex incident at σ (flights in sharing code) Consequences Input and output of topological queries are ghost simplices New organization for topological queries David Canino, Leila De Floriani (DIBRIS) 12 / 17
  • 13. Ghost Simplices (cont’d) New Organization of Topological Queries 1 retrieve all top simplices σ incident at σ 2 retrieve faces of σ involved in the query of interest (as ghost simplices wrt σ ) What we encode For each dimension t of top simplices: incidence graph Ht describing topology of faces (ghost simplices) for a top t-simplex local indices j of faces stored in Ht Consequences Faces of interest are retrieved by breadth-first traversals of Ht Boundary relations Co-boundary relations Faces [3, x, 2, 1], [3, x, 2, 2], and [3, x, 3, 0] are incident at [3, x, 1, 3]. David Canino, Leila De Floriani (DIBRIS) 13 / 17
  • 14. Using Ghost Simplices in our Mangrove TDS Library Ghost simplices improves the efficiency of topological queries in the IA∗ data structure: 30% faster 30% faster only 10% slower up to 3X faster The Mangrove TDS Library is a GPL v3 software: http://mangrovetds.sourceforge.net David Canino, Leila De Floriani (DIBRIS) 14 / 17
  • 15. Using Ghost Simplices . . . (cont’d) Overhead Cd for graphs Ht p t=2 t p=2 (p + 1) t + 1 p + 1 does not depend on the number of top simplices much less than 1% Storage costs of the IG, IS, and IA∗ data structures within our framework: d Cd s0 sd SIA∗ SIS SIG 2 18 2.8M 5.6M 22.4M 38M 44.8M 3 74 1.4M 4.2M 19.6M 68.6M 92.1M 4 224 0.7M 2.7M 14.9M 104.3M 149M 5 596 0.3M 1.4M 9M 123.6M 188M 6 1.5k 0.1M 0.7M 5.3M 143.1M 222.6M 7 3.5k 75K 0.5M 4.3M 228M 365.5M 8 8.1k 34K 0.3M 2.5M 260M 425M Generalization of the Sierpinski shape in high dimensions Small overhead implies great expressive power and compactness in high dimensions. David Canino, Leila De Floriani (DIBRIS) 15 / 17
  • 16. Conclusions & Future Work What we proposed - The Mangrove TDS Framework Fast prototyping of topological data structures for simplicial complexes under the same API. Extensible and graph-based representations of connectivity information (mangroves). Implicit representations of those simplices, not directly encoded (ghost simplices). The Mangrove TDS Library, released as GPL v3 software for the scientific community at http://mangrovetds.sourceforge.net There is a lot of space and room for improvements: new plugins extensions to cell complexes (e.g., quad and hex meshes) new editing operators (homology-preserving and -modifying operators) applications in high dimensions distributed and parallel version . . . David Canino, Leila De Floriani (DIBRIS) 16 / 17
  • 17. Acknowledgements We thank: anonymous reviewers for their useful suggestions the Italian Ministry of Education and Research (the PRIN 2009 program) the National Science Foundation (contract IIS-1116747) Prof. Vijay Natarajan, Indian Institute of Science, for the Sierpinski shape These slides are available on http://www.disi.unige.it/person/CaninoD Thank you much for your attention! David Canino, Leila De Floriani (DIBRIS) 17 / 17