Research
Neuro-Symbolic Geometric Abstraction (NeuSOGA): From Observations to Symbolic Mathematical Representations
Overview Research area: Neuro-symbolic AI, computational geometry, topological shape analysis, and symbolic representation formation, with the Scan-to-CAD (scan-to-parametric-model) problem as its mai
- arXiv
- 2609.01408
- Published
- 2026-09-01
- Authors
- Qingde Li, Qingqi Hong, Jie Tian
AI summary
Overview
Research area: Neuro-symbolic AI, computational geometry, topological shape analysis, and symbolic representation formation, with the Scan-to-CAD (scan-to-parametric-model) problem as its main testbed.
Technical level: Advanced. The paper assumes familiarity with the Medial Axis Transform, Euclidean Distance Transforms, Gaussian scale-space theory, implicit/level-set representations, NURBS and B-Rep modeling, and piecewise algebraic splines.
Scope: The paper proposes NeuSOGA, a training-free framework that converts raw geometric observations (point clouds, binary silhouettes, optical masks) into explicit closed-form symbolic mathematical representations through a four-stage pipeline denoted O → T → G → S.
Note on content: the version of the paper available here is truncated before the experimental section, so specific benchmark numbers, tables, and quantitative comparisons are not reported in the available content; only the abstract's qualitative claims about experiments are present.
What This Paper Is About
Modern AI systems achieve strong perceptual performance but store what they learn inside opaque latent parameters that are hard to interpret, edit, or analyze mathematically, and that generalize poorly to unseen geometries and topologies. This paper asks how symbolic mathematical representations can emerge from geometric observations rather than being learned statistically, and answers with NeuSOGA, a pipeline that turns observations into topological skeletons, then into sparse geometric control polygons, and finally into closed-form analytical implicit spline fields. The goal is a representation that is simultaneously interpretable, editable, compositional, and mathematically exact.
Key Contributions
-
A neuro-symbolic abstraction hierarchy (O → T → G → S). A training-free computational framework that bridges unstructured perception and explicit mathematical modeling via topology-guided geometric abstraction, with no task-specific geometric training.
-
Topology-driven perceptual grounding. A deterministic prompting strategy that extracts maximal inscribed structural cores using Euclidean Distance Transforms and uses them to guide foundation segmentation models (SAM/SAM2) without task-specific tuning — topology guides perception rather than perception discovering topology.
-
Adaptive multi-scale geometric simplification. An error-bounded, coarse-to-fine contour fusion mechanism based on scale-space theory that selectively retains high-curvature engineering details while compressing boundaries into sparse polygons via Douglas-Peucker approximation.
-
Analytical synthesis via Implicit Area Splines. Introduction of Area Splines as an explicit symbolic representation layer, showing that closed-form algebraic fields enable direct geometric editing, exact additivity, and continuous C^n modeling — properties the paper argues rarely coexist in one representation.
The paper also lists cross-modality and viewpoint invariance (consistent symbolic abstraction across ModelNet40 point clouds under canonical and arbitrary views, and COCO optical masks) as a contribution.
Main Findings
-
The pipeline is deterministic, not learned. Structural knowledge is derived primarily through topological and geometric reasoning (EDT, Medial-Axis-inspired cores, scale-space analysis) rather than task-specific geometric training, distinguishing NeuSOGA from learning-based Scan-to-CAD systems such as DeepCAD, CAD-SIGNet, Point2CAD, and KP-RED.
-
Topological cores can drive segmentation automatically. Local maxima of the Euclidean Distance Transform — centres of maximal inscribed regions — serve as segmentation prompts for SAM/SAM2, so no user interaction or arbitrary seed points are needed.
-
Scale-space fusion preserves global shape and local detail. With coarse scale σ_c = 6.0 and fine scale σ_f = 1.5, deviation between the two smoothed contours defines an importance mask that is Gaussian-smoothed into a blending function, producing a hybrid contour that keeps coarse geometry almost everywhere but reintroduces fine structure only where detail would otherwise be lost.
-
Area Splines provide exact additivity. If a polygon P is partitioned into sub-polygons P_i, the field satisfies F_P(x,y) = Σ F_{P_i}(x,y). Shared internal boundaries contribute equal and opposite signed terms that cancel exactly, so only the external boundary contributes — making composition an algebraic accumulation rather than a boundary-topology reconstruction problem.
-
The symbolic representation is fully analytical. The Area Spline is piecewise polynomial and globally C^n-continuous for any prescribed n, with closed-form gradients and higher-order derivatives (∇F, H(F)) available without finite differences, and with shape deformation achieved by directly perturbing vertex coordinates in the field equation.
-
Area Splines differ from parametric splines. Bézier, B-spline, and NURBS formulations describe boundaries via a mapping C(t) = (x(t), y(t)); Area Splines encode the spatial region itself as the zero level-set F(x,y) = 0, making containment, composition, and topological structure intrinsic to the representation.
-
Boolean composition becomes algebraic. Because internal boundaries vanish through symbolic cancellation, CSG-style Boolean operations are converted from a topology-management problem (intersection detection, trimming, reparameterization, topology repair) into field operations on symbolic expressions.
-
Cross-modality and viewpoint consistency claimed. The abstract states that experiments on ModelNet40 point-cloud data, arbitrary-view projections, and segmented optical observations consistently yield compact symbolic representations while preserving essential topological and geometric structure. Quantitative metrics, dataset splits, and comparison tables are not reported in the available content.
Methodology in Plain English
The framework is a four-stage cascade:
-
Topological abstraction. A point cloud is projected to a principal viewing plane to produce an occupancy mask M(x,y). An exact Euclidean Distance Transform D(p) = min over boundary points of ‖p − q‖₂ is computed, and its local maxima become "structural cores" — points that summarize the object's internal organization, in the spirit of Blum's Medial Axis Transform.
-
Topology-guided perception. Each core point is fed as a prompt to Segment Anything (SAM/SAM2) to isolate a coherent object component. The key twist is directionality: the geometry determines where to look, instead of a learned model deciding what the structure is.
-
Adaptive multi-scale geometric abstraction. Each component's contour is smoothed at two scales, coarse (σ_c = 6.0) and fine (σ_f = 1.5). Where the two differ by more than a threshold τ, detail is judged important; that decision is smoothed into a continuous weight W(t) and used to blend the two contours into one hybrid contour. The result is then simplified into a small control polygon using Douglas-Peucker approximation — a handful of vertices standing in for a complex boundary.
-
Symbolic synthesis. The control polygon V = {v₁, …, v_n} is turned into an Implicit Area Spline: a scalar field F(x,y) = Σ ωᵢ(x,y)·Δᵢ(x,y), where Δᵢ is the signed triangular area spanned by (x,y) and edge e_i, and ωᵢ are localized C^n-smooth algebraic blending weights derived via Green's integral theorem over the polygonal boundary. The shape is the zero level-set F(x,y) = 0.
Conceptually, the paper frames this as emulating two human abilities: structural discovery (finding invariants in noisy observations) and symbolic invention (idealizing them into exact mathematical objects, as mathematicians turn observed lines into infinitely thin ones).
Why This Matters
Impact on research. The paper argues that a key limitation of existing Scan-to-CAD methods is the absence of an explicit abstraction layer separating topological structure, geometric form, and symbolic representation. NeuSOGA supplies that layer and reframes reconstruction as symbolic model construction. It positions topology as the abstraction bridge between perception and reasoning, and treats spline control points, segments, and algebraic constraints as symbolic entities that can be manipulated independently of the original sensor data — an interpretable alternative to neural latent encodings such as DeepSDF.
Real-world applications (as motivated by the paper's framing):
- Reverse engineering and CAD reconstruction — recovering compact, editable parametric models from noisy 3D scans without retraining on new object families.
- Engineering detail preservation — the coarse/fine scale-space fusion is explicitly designed to keep high-curvature engineering features while smoothing away scan noise.
- Robotics and industrial inspection — converting segmented optical observations into explicit region descriptions that downstream planners or checkers can reason over.
- Explainable AI pipelines — a representation where the model's knowledge is readable and editable rather than buried in weights.
Industry relevance. CAD/CAM workflows depend on NURBS and B-Reps, which require numerically delicate trimming and topology-repair procedures during Boolean operations. By turning Boolean composition into algebraic field addition with automatic cancellation of internal boundaries, Area Splines suggest a route to more robust geometric kernels. The training-free framing also matters commercially: no large labeled CAD corpus or retraining cycle is required for a new topology.
Future Directions
- Extending beyond 2D planar shapes. The Area Spline formulation here is presented for planar shapes defined by counter-clockwise control polygons in ℝ²; scaling the same symbolic synthesis to full 3D solids and freeform surfaces is the natural but unaddressed next step in the available content.
- Quantitative benchmarking against learning-based Scan-to-CAD. The paper positions itself against DeepCAD, CAD-SIGNet, Point2CAD, and KP-RED, but the available content does not report head-to-head accuracy metrics, training-data requirements, or runtime comparisons.
- Higher-level reasoning on the symbolic layer. The paper sketches a conceptual chain O →(Perception) T →(Abstraction) S →(Reasoning) C, moving from observations to topological invariants to symbols to mathematical concepts. Realizing the final "reasoning" arrow — machine-assisted mathematical discovery and concept formation — remains a proposal rather than a demonstrated capability.
- Threshold and scale sensitivity. The pipeline depends on several parameters (σ_c, σ_f, deviation threshold τ, Gaussian widths, Douglas-Peucker tolerance). How sensitive the resulting symbols are to these choices, and whether they can be selected automatically, is not resolved in the available content.
Target Audience
Researchers and graduate students in neuro-symbolic AI, computational geometry, CAD/CAM and reverse engineering, and shape analysis; practitioners interested in interpretable or training-free alternatives to deep implicit reconstruction; and cognitive-science-adjacent readers interested in computational models of mathematical abstraction. Readers need a solid geometry background — the Implicit Area Spline formulation, scale-space reasoning, and the Medial Axis discussion are not written for beginners, and the paper's strongest content is theoretical and architectural rather than empirical.
Authors’ abstract
A fundamental challenge in artificial intelligence is the transformation of observations into explicit symbolic representations suitable for abstraction, interpretation, and reasoning. While modern AI systems achieve remarkable perceptual capabilities through large-scale statistical learning, the resulting knowledge is typically encoded within latent parameters that are difficult to inspect or manipulate analytically. Inspired by Neuro-Symbolic AI and theories of human abstraction, this paper investigates the formation of symbolic mathematical representations from geometric observations. We propose NeuSOGA (Neuro-Symbolic Geometric Abstraction), a framework that progressively transforms observations into topological abstractions, geometric abstractions, and ultimately symbolic mathematical representations. The architecture combines topology-guided structural discovery using Euclidean Distance Transforms, foundation-model perception using Segment Anything, adaptive multi-scale geometric abstraction, and symbolic synthesis through Implicit Area Splines. The resulting representation is an analytical implicit model supporting arbitrary-order smoothness, additive composition, and closed-form evaluation. Unlike neural latent encodings, the generated representation remains interpretable, editable, and mathematically explicit. Experiments on ModelNet40 point clouds, arbitrary-view projections, and segmented optical observations demonstrate that NeuSOGA transforms diverse observations into compact symbolic representations while preserving essential geometric and topological structure across sensing modalities and viewing directions. NeuSOGA provides an interpretable and explainable pathway from observation to symbol and establishes