Papers
Topics
Authors
Recent
Search
2000 character limit reached

Relation-Centric Open-Vocabulary 3D Gaussian Segmentation

Published 1 Jul 2026 in cs.CV | (2607.01140v1)

Abstract: Open-vocabulary 3D Gaussian segmentation is challenging because it requires language understanding for diverse queries and accurate separation of Gaussians along object boundaries. Prior approaches either embed language knowledge into individual Gaussians to improve query responsiveness or optimize per-Gaussian instance features to encode object identity. However, these strategies may produce noisy Gaussian segmentations or rely on cost-inefficient per-scene optimization. We propose PairGS, a framework that reframes Gaussian segmentation as modeling pairwise relations between Gaussians. 3D Gaussian representations provide rich signals for relation estimation, such as view contribution weights and multi-view mask evidence. By leveraging these cues, PairGS explicitly constructs a relation graph for segmentation without a heavy optimization process. PairGS first proposes sparse edge candidates using low-dimensional descriptors, computes precise pairwise affinities only on those candidates, and builds a hierarchical cluster tree for multi-granular querying. It achieves state-of-the-art results on open-vocabulary 3D Gaussian segmentation benchmarks, while the fast variant is 50x faster than optimization-based instance-feature approaches.

Summary

  • The paper presents PairGS, which reframes 3D Gaussian segmentation as a pairwise relation estimation problem, enhancing accuracy at instance boundaries.
  • It employs an efficient two-stage graph construction with robust multi-view aggregation and hierarchical TreeDBSCAN clustering for multi-granular segmentation.
  • The method achieves state-of-the-art performance on benchmarks with significant gains in mIoU and runtime, demonstrating practical applicability in diverse 3D scenarios.

Relation-Centric Open-Vocabulary 3D Gaussian Segmentation: An Expert Review

Introduction

The paper "Relation-Centric Open-Vocabulary 3D Gaussian Segmentation" (2607.01140) introduces PairGS, a novel training-free method for open-vocabulary segmentation of 3D Gaussian Splatting (3DGS) scenes. Unlike prior approaches that primarily use per-Gaussian language embedding or instance features, PairGS formulates segmentation as an explicit pairwise relation estimation problem between 3D Gaussians. This shift enables both higher segmentation precision, especially at instance boundaries and for thin structures, and strong computational efficiency. The method is supported by extensive benchmarking, with quantitative and qualitative comparisons indicating substantial advances over language-based, instance-feature-based, and point-based baselines.

Limitations of Existing Paradigms

Open-vocabulary segmentation in 3DGS is characterized by two dominant paradigms:

  • Language-based approaches utilize features distilled from vision-LLMs (e.g., CLIP, SAM) directly as per-Gaussian embeddings, supporting flexible querying but often leading to spatial incoherence as Gaussian assignments are made independently [9,18,39].
  • Instance-feature-based approaches optimize for consistent instance labeling over Gaussians using multi-view 2D masks, but are constrained by the computational bottleneck of per-scene optimization and often yield oversegmentation or boundary artifacts, particularly in regions of contact or with thin substructures [29,48,54].

Training-free strategies have emerged for efficiency but typically abstract 3DGS scenes as unstructured point clouds, discarding view-dependent cues intrinsic to the Gaussian representation, leading to noisy instance predictions [12].

Core Contributions of PairGS

PairGS reframes the segmentation problem as the construction of a relation graph, with nodes representing Gaussians and directed weighted edges reflecting data-driven, view-consistent affinity scores. The technical cornerstones include:

  • Pairwise Relation Modeling: Rather than assessing per-Gaussian semantic relevance, affinity is computed based on the co-occurrence of mask assignments (from multi-view observations) and the product of respective view-dependent contribution weights. This approach leverages the explicit and interpretable Gaussian rendering pipeline.
  • Efficient Two-Stage Graph Construction: The method implements a two-stage scheme for graph construction. Initially, semantic and geometric properties (derived via SAM-masked CLIP, PCA projection, and normalized positions) are concatenated into low-dimensional node descriptors for fast kk-NN neighbor proposal. Subsequently, exact pairwise affinities are calculated only for these sparse candidate edges using robust multi-view aggregation, which is crucial for scaling to large scenes.
  • Hierarchical Clustering via TreeDBSCAN: To enable multi-granular segmentation, PairGS introduces TreeDBSCAN, a directed hierarchical clustering algorithm. Unlike classic DBSCAN or HDBSCAN, TreeDBSCAN constructs a cluster hierarchy that enforces parent-child containment constraints and prunes redundant or spurious clusters in a levelwise manner. This ensures consistent, non-overlapping instance structures across granularities.
  • Semantic Refinement and Querying: The pipeline supports open-vocabulary queries by refining cluster-level semantic descriptors post-hoc through robust 3D-2D association, leveraging majority voting and opacity-weighted feature aggregation.

Quantitative Performance

On LERF-OVS [21] and ScanNet [11], PairGS achieves clear SOTA performance in terms of mean IoU and accuracy for both open-vocabulary object and scene-level segmentation, outperforming baselines by 8-16 mIoU points. Notably, PairGS-Fast, using simpler center-based feature lifting, attains comparable segmentation quality while reducing runtime by over 50× relative to optimization-based approaches. The segmentation is not only more accurate but also has superior visual consistency as measured in NVS (novel view synthesis) metrics.

A brief comparison drawn from reported numbers:

Method mIoU (LERF) mAcc (LERF) Runtime (min:s)
LaGa [6] 52.2 55.1 74:47
THGS [12] 42.5 43.3 1:59
PairGS-Fast 56.8 63.6 0:58
PairGS (ours) 60.4 68.2 3:02

Further, the appendix evidences architectural stability: changing dimensionality of descriptors, number of neighbors, or the cluster hierarchy depth yields minimal impact, indicating robustness and transferability.

Qualitative Observations

Qualitative results substantiate the claims of improved boundary adherence and reduced noise. PairGS outperforms both point-based [12] and instance-feature-based methods [6,29,48] in challenging settings such as objects with adjoining contact surfaces and thin geometry (e.g., camera straps, cutlery). The cluster hierarchy supports seamless selection at varying instance granularities without requiring multi-level mask input or repeated optimization.

Theoretical and Practical Implications

PairGS demonstrates that relation-centric modeling, explicitly leveraging rendering-intrinsic cues (multi-view mask assignment, contribution weights), can relax the limitations of both language- and instance-centered paradigms for 3D scene understanding. The method's training-free and label-agnostic nature removes the need for large-scale annotated datasets and protracted optimization cycles, opening up possibilities for rapid deployment in robotics, AR/VR, and real-time robotic manipulation pipelines as exemplified in the supplementary material.

The hierarchical design is significant: it enables seamless multi-scale reasoning in a single pass, rather than requiring handcrafted mask scales or incremental clustering, which greatly enhances the flexibility of open-vocabulary query interfaces for 3D environments.

Limitations and Future Work

While PairGS achieves SOTA performance, two primary limitations are noted:

  • The approach is fundamentally constrained by mask evidence: objects never isolated in any view (e.g., small or heavily occluded objects) cannot be segmented due to the lack of sufficient multi-view support.
  • Open-vocabulary assignment depends on SAM-CLIP quality; ambiguous or underdefined queries may still fail due to limitations in the 2D semantic backbone.

The authors suggest that improvements in 2D mask proposal and language-vision models, or the development of multi-scale cross-view aggregation schemes, could further ameliorate these issues. Addressing these could allow even finer, annotation-efficient segmentation in future work.

Conclusion

PairGS sets a new direction and performance bar for 3DGS-based open-vocabulary segmentation by centering pairwise relations, exploiting the structured properties of 3D Gaussians, and introducing a cluster hierarchy compatible with arbitrary query granularity. Empirical results validate both efficiency and output quality gains. The architectural decoupling from heavy optimization and reliance on view aggregation ensures broad applicability and scalability. The paper provides a foundation for future research on further integrating language supervision, extending to long-tail categories, and exploring dynamic or outdoor 3D environments.

Reference:

"Relation-Centric Open-Vocabulary 3D Gaussian Segmentation" (2607.01140)

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.

Tweets

Sign up for free to view the 1 tweet with 2 likes about this paper.