SIGGRAPH Asia 2024
Diana Marin, Amal Dev Parakkat, Stefan Ohrhallinger, Michael Wimmer, Steve Oudot, Pooran Memari
We introduce the Stability-Incorporated Neighborhood Graph (SING), a novel density-aware structure designed to capture the intrinsic geometric properties of a point set. We improve upon the spheres-of-influence graph by incorporating additional features to offer more flexibility and control in encoding proximity information and capturing local density variations. Through persistence analysis on our proximity graph, we propose a new clustering technique and explore additional variants incorporating extra features for the proximity criterion. Alongside the detailed analysis and comparison to evaluate its performance on various datasets, our experiments demonstrate that the proposed method can effectively extract meaningful clusters from diverse datasets with variations in density and correlation. Our application scenarios underscore the advantages of the proposed graph over classical neighborhood graphs, particularly in terms of parameter tuning.
python main.py --filename --filetype --epsilon --density --drawEdges
Parameters:
- filename: the input data, usually a list of 2D coordinates, sometimes with additional information per point e.g. radius
- filetype: the type of input data, which can be 'stipples', 'disks' or 'species'. Stipples files only contain 2D coordinates of each point, disks files contain points which a given radius, while species files are examples from [Ecormier-Nocca et al. 2019], of points with radius and certain other properties which are ignored for our use case
- epsilon: (optional) the default value is 1.0
- density: (optional) the exponent for the density-aware variant of SING, default value is 0.0, which ignores the density component
- drawEdges: (optional) drawing the SING edges on top of the classes
The application plots the clustering using the given arguments, and the persistence diagram.
@inproceedings{marin2024sing,
title={SING: Stability-Incorporated Neighborhood Graph},
author={Marin, Diana and Parakkat, Amal Dev and Ohrhallinger, Stefan and Wimmer, Michael and Oudot, Steve and Memari, Pooran},
booktitle={SIGGRAPH Asia 2024 Conference Papers},
pages={1--10},
year={2024}
}
This work is licensed under a
Creative Commons Attribution 4.0 International License.