Pith. sign in

REVIEW 4 major objections 6 minor 24 references

LabelGS: Label-Aware 3D Gaussian Splatting for 3D Scene Segmentation

T0 review · 4 major / 6 minor · reviewed 2026-08-05 · deepseek-v4-flash

Pith's one-line read LabelGS makes 3D Gaussian scenes segmentable by assigning each pixel's label directly to the Gaussian that dominates its rendering, and reports state-of-the-art segmentation accuracy with a 22x training speedup over Feature-3DGS.

desk verdict A fast, clever label-lifting method for 3DGS, but the evaluation is undermined by self-referential ground truth and ablations that don't support the design. read the letter →

arxiv 2508.19699 v1 pith:HPMB6TKH submitted 2025-08-27 cs.CV

classification cs.CV
keywords 3DGaussianSplattingscenesegmentationlabel-awarerenderingocclusionanalysiscross-viewconsistentmasksvideoobjecttrackingnovel-viewlabelling
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

LabelGS proposes that a 3D Gaussian scene can be made segmentable without learning high-dimensional semantic features or group embeddings: simply attach to each Gaussian the object label of the pixel it contributes to most during rendering. The paper argues this direct assignment is both more accurate and far cheaper than prior feature-lifting or grouping approaches, and it adds two mechanisms to keep labels clean: an occlusion analysis model that excludes occluded regions from the loss, using monocular depth, and a projection filter that prevents a single Gaussian from receiving conflicting labels. If correct, LabelGS turns 3D Gaussian Splatting into a practical segmentation tool that trains in about 20 minutes on one GPU while producing sharp, novel-view object masks. The claim is supported by experiments on four datasets, where LabelGS reports the highest mIoU and PSNR among the compared methods, and by an ablation study of each proposed component.

What carries the argument

The central mechanism is Main Gaussian Labeling (MGL): for each pixel, assign the pixel's label to the Gaussian j that maximizes alpha_i * T_i during splatting, i.e. the Gaussian that most strongly explains that pixel. Around this core sit the Occlusion Analysis Model (OAM), which uses monocular depth estimates to decide which masks occlude which and builds unoccluded masks for loss computation, and the Gaussian Projection Filter (GPF), which only accepts a label if the Gaussian's projected center lies in the same label region as the pixel. These components turn a set of 2D masks into a label-attributed 3D Gaussian model at low overhead.

What would settle it

Re-evaluate LabelGS on the same four datasets using independently human-annotated ground-truth masks for held-out views instead of masks exported from the tracking model. If mIoU and PSNR drop to the level of the feature-based baselines, the claim that direct label lifting yields accurate 3D segmentation would be refuted.

Watch

Extended reading notes

Core claim

The central claim is that direct label assignment to Gaussians—rather than learning a feature field, a compressed semantic embedding, or a group identity—is the key to fast and accurate 3D scene segmentation in Gaussian Splatting. For each training pixel, the label is given to the Gaussian with the largest alpha-weighted contribution (the 'main' Gaussian), so segmentation becomes a property of the representation itself, not a post-processing step over learned features. The paper further claims that an Occlusion Analysis Model, which uses monocular depth to build per-mask occlusion lists and excludes occluded areas from the label loss, prevents the model from overfitting occlusions, and that

Load-bearing premise

The reported accuracy assumes that the 2D masks generated by the same tracking model used to supervise LabelGS are a valid ground truth for what should count as a correctly segmented object in a novel view.

Editorial extensions

If this is right

  • 3D scene segmentation becomes a rendering-time lookup rather than a learned feature optimization, so training time and memory stay close to plain 3D Gaussian Splatting.
  • Extracting a subset of Gaussians by label yields a renderable 3D object with precise boundaries in unseen views, directly supporting object removal, editing, and novel-view visualization.
  • The approach reduces the 3D segmentation problem to 2D video object tracking plus a single assignment rule, so improvements in the 2D tracker should transfer directly to 3D segmentation quality.
  • A 22x training speedup over Feature-3DGS at 1440x1080 makes interactive or iterated segmentation of a scene practical on a single consumer GPU.
  • The random region sampling strategy for label loss keeps the added optimization cost low even when many object masks are present.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The direct label-assignment rule is likely to combine with open-vocabulary label sources: if a 2D open-vocabulary segmenter replaces the video tracker, LabelGS could yield zero-shot 3D segmentation without any retraining of the assignment rule.
  • The Occlusion Analysis Model is a general occlusion-aware supervision heuristic; it could be tested as a standalone module in other lifting pipelines, where it should help whenever training views contain occluded objects visible from other viewpoints.
  • Because the benchmark's ground-truth masks are produced by the same tracking model used for supervision, the reported mIoU may overstate performance on objects the tracker misses; an evaluation with independent human annotations would clarify how much of the gain is intrinsic to the labeling rule versus inherited from the tracker.
  • The Gaussian Projection Filter's negative effect on 360-degree datasets suggests a view-dependent or adaptive version—applying the filter only where view coverage is sparse—might preserve its benefit on forward-facing scenes without harming full-coverage scenes.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 6 minor

Summary. The paper proposes LabelGS, a method that augments 3D Gaussian Splatting with per-Gaussian object labels. Cross-view consistent masks are obtained from the DEVA video tracker; an Occlusion Analysis Model uses monocular depth to suppress occluded areas during label loss computation; Main Gaussian Labeling assigns each pixel label to the Gaussian with the highest alpha-weighted contribution; a Gaussian Projection Filter resolves label conflicts. The authors report mIoU/PSNR/SSIM/LPIPS on 3D-OVS, LLFF, LERF-Mask, and Mip-NeRF360, introduce a modified/new benchmark by adding masks to LLFF and Mip-NeRF360, and claim a 22x training speedup over Feature-3DGS. Code is promised for release.

Significance. If independently validated, LabelGS would be a valuable and conceptually simple alternative to feature/grouping-based 3D Gaussian segmentation: it avoids high-dimensional feature learning, labels Gaussians directly, and reports a large training-time advantage over Feature-3DGS. The paper includes component-wise ablations and a direct runtime comparison, which are useful. However, the current evidence does not establish the SOTA claim because the test masks for the extended benchmark are not shown to be independent of the DEVA supervision, and the full model is not consistently better than its own ablations.

major comments (4)
  1. [§4.1, Datasets and Metrics; §3.1] The extended LLFF/Mip-NeRF360 benchmark adds masks of salient objects for evaluation, but the manuscript does not show these masks are independent of the DEVA masks used for supervision. Since DEVA generates the cross-view labels that supervise LabelGS (Eq. 1), and the Limitation section states LabelGS learns labels generated by DEVA, evaluating on DEVA-produced test masks measures how faithfully LabelGS transfers DEVA's own labels to novel views. This is circular for the SOTA claim. Please re-evaluate on independently human-annotated ground truth (or existing benchmarks with independent GT) and report the resulting numbers.
  2. [§4.1, threshold selection] For LangSplat and Feature-3DGS, the protocol tries 1000 score thresholds and selects the one with the best PSNR on the rendered test views (after cropping to the prompt-mask bounding box). This uses the test ground-truth masks to tune the baselines, which is test-set leakage. It likely inflates the baselines and invalidates the reported comparison, even if it does not favor LabelGS. Please use a validation split or a fixed threshold and report the effect.
  3. [§4.4 Ablation Studies; Table 2] The ablations do not support the claims. On 3D-OVS, full LabelGS mIoU is 0.925, while w/o GPF is 0.926 and w/o OAM is 0.928; on LERF, full is 0.75 vs 0.82 (w/o GPF) and 0.80 (w/o OAM); on Mip-NeRF360, full is 0.75 vs 0.79 (w/o OAM). Section 4.4 states GPF improves 3D-OVS, which Table 2 contradicts, and that OAM changes are slight, which the LERF drop is not. The full method is not consistently better than its own ablations, so the claimed contributions of GPF and OAM are unsubstantiated. Please revisit the design or report differences with variance/statistical tests and explain why the full model is preferred.
  4. [§4.2 Quantitative Results] The claim that LabelGS 'outperforms previous state-of-the-art methods, including Feature-3DGS' is only directly tested against Feature-3DGS on 3D-OVS; Feature-3DGS is not evaluated on LLFF, LERF, or Mip-NeRF360. The other datasets are compared with LangSplat, Gaussian Grouping, and SAGS. Please either add Feature-3DGS results on the remaining datasets (or state clearly that the SOTA claim is based on 3D-OVS only, with the other comparisons being against a different set of baselines).
minor comments (6)
  1. [Abstract; §1; §5] Use a consistent spelling of 'DEVA'. The text contains 'DEV A' (in the abstract and Section 1) and 'DEV A-tracking-failed' in the Limitation.
  2. [§3.3, Eq. (8)] The notation 'Proj_i(H(G,k))' is undefined for a set of Gaussians. Please specify how the subset H(G,k) is rendered (e.g., alpha-compositing only those Gaussians) before applying the loss.
  3. [§3.3] Typo: 'Main Gaussain Labeling' should be 'Main Gaussian Labeling'.
  4. [Table 4] The training-time comparison is reported for a single scene (sofa) at 15,000 iterations. Please clarify whether both methods are compared at the same convergence criterion and whether the 22x figure is representative across scenes/resolutions.
  5. [§4.2] The phrase 'Our result significantly surpasses' is used without statistical significance tests. Please avoid 'significantly' unless a test is reported.
  6. [Figure 2] Panel (d) is labeled GPF but the caption and text do not explain the weight annotations (w=0.2, etc.) in that panel. Please make the figure self-contained.

Circularity Check

2 steps flagged · score 6.0 of 10

Benchmark circularity: DEVA-generated masks are both the supervision and the test ground truth, and the label-assignment rule copies DEVA labels into Gaussians by construction.

  1. other [Section 4.1 (Datasets and Metrics); Section 3.1; Implementation Details]
    "We modified these datasets by removing occluded segmentation masks, i.e. background masks. ... we select one mask of the object as the 3D segmentation prompt, while masks from other views are used as the test set. We render the extracted 3D Gaussians in test views and compare with ground truth image."

    The test-set 'ground truth' masks are generated by the same DEVA tracker that produces the supervision masks. Section 3.1 obtains cross-view masks with DEVA, and the implementation states 'we use DEV A to track the objects from training images.' Thus the reported mIoU/PSNR measure how faithfully LabelGS transfers DEVA's own labels to novel views, not agreement with independent human annotation. The 'new benchmark' is therefore constructed from the supervision signal itself, so the SOTA comparison is untested against independent ground truth. The Limitation section reinforces this by admitting failure on DEVA-tracking-failed targets.

  2. self definitional [Section 3.3, Eq. (6) and Eq. (8)]
    "the label of pixel v is assigned to the Gaussian that contributes the most to the rendering, ... Bj = Li(v), s.t. j = arg max k (αkTk) ... Llabel = P t i=1 P N k=1 L1(P roji(H(G, k))U i k, IiM i kU i k)"

    Gaussian labels are set equal to the DEVA pixel label at the pixel where the Gaussian is the main contributor. Rendering the label map of H(G,k) therefore returns, by construction, the input mask M_i^k in the unoccluded region, so the label loss is minimized by the assignment rule itself on training views. The 'prediction' is the input mask re-rendered through the Gaussian representation rather than an independently derived segmentation. Combined with the DEVA-based test ground truth, the evaluation loop is closed: the output labels and the benchmark labels share the same origin.

full rationale

LabelGS is an empirical method paper rather than a formal derivation, so classical circular-derivation patterns are limited. The central circularity is that the cross-view masks supervising the label loss (Eq. 8) and the ground-truth masks used for the new benchmark test comparisons (Sec. 4.1) are both produced by the DEVA tracker. Moreover, the Main Gaussian Labeling rule (Eq. 6) is a direct copy of DEVA pixel labels to the main-rendering Gaussian, making the training-view label map equal to the input mask by construction. Consequently, the headline claim that LabelGS 'outperforms previous state-of-the-art methods' in 3D scene segmentation is, in substantial part, a measure of self-consistency with the DEVA/SAM labeling ecosystem, not of agreement with independent human annotations. This is partial circularity, not total: the underlying 3DGS color/geometry optimization, DOV, OAM, GPF, and the reported 22x training speedup are independent technical contributions, and the PSNR decline from added constraints is a real trade-off. There are no load-bearing self-citations or imported uniqueness theorems. Score 6 reflects that the central empirical claim reduces to evaluating the method against its own supervision source.

Assumptions & free parameters 4 free parameters · 4 assumptions · 0 invented entities

The central claim depends on the quality of external pretrained modules (DEVA masks, DepthAnythingV2 depth), on the modeling assumption that a single maximum-contribution Gaussian can own a pixel label, and on the validity of benchmarks whose masks come from the same tracking ecosystem. These are not proven in the paper; the Limitation section acknowledges the DEVA dependence. No new physical entities are introduced; OAM, MGL, and GPF are processing components rather than invented entities.

free parameters (4)
  • Label assignment threshold = 0.6
    Pixel label is lifted to a Gaussian only if its contribution exceeds 0.6 (Section 4.1 Implementation Details); chosen by hand and scene-dependent.
  • Label loss weight lambda2 = not reported
    Appears in Eq. 10; value never given, so the balance between reconstruction and label losses is unstated.
  • Random region sampling size = 10 masks per iteration
    Section 4.1: 'randomly sample 10 object masks in an image for optimization at each iteration'; affects efficiency and optimization.
  • Label loss start iteration = 1000
    Section 4.1: label loss included only after the 1000th iteration.
assumptions (4)
  • domain assumption DEVA produces cross-view consistent masks that correctly cover every target object in all training views (Section 3.1, Eq. 1).
    If DEVA misses or mis-tracks an object, LabelGS has no label to lift; the paper's Limitation states it may struggle on DEV A-tracking-failed targets.
  • domain assumption DepthAnythingV2 monocular depths at mask boundaries are accurate enough to determine occlusion order via adjacent boundary average depth (Section 3.2, Eq. 2).
    Erroneous occlusion lists would remove the wrong pixels from the label loss, corrupting reconstruction.
  • domain assumption The pixel belongs to the single Gaussian with maximum alpha-times-transmittance (Eq. 6), and conflicts are resolvable by the projection filter (Eq. 7).
    This is the core surrogate for object membership; GPF's negative effect on LERF/Mip-NeRF360 (Table 2) shows the assumption is not uniformly satisfied.
  • domain assumption Masks generated by SAM/DEVA in the modified and extended benchmarks are a valid ground truth for 3D scene segmentation (Section 4.1).
    The reported mIoU/PSNR quantify agreement with this labeling ecosystem; independent human masks could change rankings.

how reviews work

0 comments
Cite this review

Pith. "Pith review of LabelGS: Label-Aware 3D Gaussian Splatting for 3D Scene Segmentation." pith.science (2026). https://pith.science/paper/HPMB6TKH

@misc{pith2026250819699,
  author       = {Pith},
  title        = {Pith review of: LabelGS: Label-Aware 3D Gaussian Splatting for 3D Scene Segmentation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/HPMB6TKH}},
  note         = {Machine review of arXiv:2508.19699}
}
read the original abstract

3D Gaussian Splatting (3DGS) has emerged as a novel explicit representation for 3D scenes, offering both high-fidelity reconstruction and efficient rendering. However, 3DGS lacks 3D segmentation ability, which limits its applicability in tasks that require scene understanding. The identification and isolating of specific object components is crucial. To address this limitation, we propose Label-aware 3D Gaussian Splatting (LabelGS), a method that augments the Gaussian representation with object label.LabelGS introduces cross-view consistent semantic masks for 3D Gaussians and employs a novel Occlusion Analysis Model to avoid overfitting occlusion during optimization, Main Gaussian Labeling model to lift 2D semantic prior to 3D Gaussian and Gaussian Projection Filter to avoid Gaussian label conflict. Our approach achieves effective decoupling of Gaussian representations and refines the 3DGS optimization process through a random region sampling strategy, significantly improving efficiency. Extensive experiments demonstrate that LabelGS outperforms previous state-of-the-art methods, including Feature-3DGS, in the 3D scene segmentation task. Notably, LabelGS achieves a remarkable 22X speedup in training compared to Feature-3DGS, at a resolution of 1440X1080. Our code will be at https://github.com/garrisonz/LabelGS.

Figures

Figures reproduced from arXiv: 2508.19699 by the authors.

Figure 1
Figure 1. Illustration of segmented 3D objects obtained by our method (LabelGS). the scarcity of semantically annotated 3D data. To avoid this limitation, re￾searchers [16,24,21] have used 2D image prior as supervise, and segment 2D feature map after projection of Gaussians. Although innovative, this 2D-to-3D transfer approach faces two critical challenges. i) First, it struggles to capture the 3D spatial nature of scenes aft… view at source ↗
Figure 2
Figure 2. The framework of LabelGS. We obtain cross-view masks from DEVA, occlusion relationship between masks by Occlusion Analysis Model, and lift these 2D pixel labels to 3D Gaussians by Main Gaussian Labeling and Gaussian Projection Filter. where M = {M1 , M2 , ..., Mt} is the cross-view consistent masks corresponding to input images, referring to [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Densification of view(DOV) for sparse view input images. For the input images (a), we model the native 3DGS to obtain dense view images, as video frames (b). Next, 2D cross-view masks (c) are generated by DEVA [4]. (d) We retain the tracking results corresponding to the input image. The occlusion list Ok contains all masks that occlude Mk and is defined as: Ok = {Mj |Dk,j (j) < Dk,j (k)}. (2) The unoccluded mask of … view at source ↗
Figures from the paper (5 more)
Figure 4
Figure 4. Figure 4: The inference process of our LabelGS. The optimized 3DGS renders the image and the label map from a given viewpoint. Users select the target mask to obtain the labels, which is used to extract 3D Gaussians. where L1 is the L1 loss, H(G, k) denotes all Gaussians with th…
Figure 5
Figure 5. Figure 5: Qualitative comparisons of 3D Gaussian segmentation in test views. We query the text and its mask in the training view. selected object ID. We identify the object ID by finding the mask that overlays mostly with the prompt mask. Implementation Details To obtain consist…
Figure 6
Figure 6. Figure 6: The comparisons of occlusion area reconstruction after applying gaussian seg￾mentation. its long training time. The table shows that our method extracts 3D Gaussian more clearly the four datasets. Our result significantly surpasses the Feature￾3DGS [24] with 512-dimens…
Figure 7
Figure 7. Figure 7: Ablation study of Occlusion Anlysis Model(OAM) on the 3D-OVS dataset. full 512-dimension feature for each 3D primitive Gaussian, while LangSplat only learns a compressed 3-dimensional feature for each Gaussian. This compres￾sion may severely impact the semantic feature…
Figure 8
Figure 8. Figure 8: Ablation study of Occlusion Analysis Model(OAM) on the LERF-Mask dataset in remove and segmentation tasks. 4.4 Ablation Studies We conducted ablation experiments on four datasets(3D-OVS, LLFF, LERF, Mip-NeRF360), as show in [PITH_FULL_IMAGE:figures/full_fig_p012_8.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

24 extracted references · 13 canonical work pages

  1. [1]

    In: Proceedings of the IEEE/CVF international conference on computer vision

    Barron, J.T., Mildenhall, B., Tancik, M., Hedman, P., Martin-Brualla, R., Srini- vasan, P.P.: Mip-nerf: A multiscale representation for anti-aliasing neural radiance fields. In: Proceedings of the IEEE/CVF international conference on computer vision. pp. 5855–5864 (2021) 14 Authors Suppressed Due to Excessive Length

  2. [2]

    In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition

    Barron, J.T., Mildenhall, B., Verbin, D., Srinivasan, P.P., Hedman, P.: Mip- nerf 360: Unbounded anti-aliased neural radiance fields. In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. pp. 5470–5479 (2022)

  3. [3]

    In: NeurIPS (2023)

    Cen, J., Zhou, Z., Fang, J., Yang, C., Shen, W., Xie, L., Zhang, X., Tian, Q.: Segment anything in 3d with nerfs. In: NeurIPS (2023)

  4. [4]

    In: ICCV (2023)

    Cheng, H.K., Oh, S.W., Price, B., Schwing, A., Lee, J.Y.: Tracking anything with decoupled video segmentation. In: ICCV (2023)

  5. [5]

    IEEE Robotics and Automation Letters 7(3), 8138–8145 (2022)

    Guan, T., Kothandaraman, D., Chandra, R., Sathyamoorthy, A.J., Weerakoon, K., Manocha, D.: Ga-nav: Efficient terrain segmentation for robot navigation in unstructured outdoor environments. IEEE Robotics and Automation Letters 7(3), 8138–8145 (2022)

  6. [6]

    Advances in neural information processing systems 6 (1993)

    Hinton, G.E., Zemel, R.: Autoencoders, minimum description length and helmholtz free energy. Advances in neural information processing systems 6 (1993)

  7. [7]

    arXiv preprint arXiv:2401.17857 (2024)

    Hu, X., Wang, Y., Fan, L., Fan, J., Peng, J., Lei, Z., Li, Q., Zhang, Z.: Semantic anything in 3d gaussians. arXiv preprint arXiv:2401.17857 (2024)

  8. [8]

    ACM Transactions on Graphics 42(4) (July 2023)

    Kerbl, B., Kopanas, G., Leimk¨ uhler, T., Drettakis, G.: 3d gaussian splatting for real-time radiance field rendering. ACM Transactions on Graphics 42(4) (July 2023)

Show all 24 references
  1. [9]

    In: International Conference on Computer Vision (ICCV) (2023)

    Kerr, J., Kim, C.M., Goldberg, K., Kanazawa, A., Tancik, M.: Lerf: Language em- bedded radiance fields. In: International Conference on Computer Vision (ICCV) (2023)

  2. [10]

    arXiv preprint arXiv:1312.6114 (2013)

    Kingma, D.P., Welling, M.: Auto-encoding variational bayes. arXiv preprint arXiv:1312.6114 (2013)

  3. [11]

    arXiv:2304.02643 (2023)

    Kirillov, A., Mintun, E., Ravi, N., Mao, H., Rolland, C., Gustafson, L., Xiao, T., Whitehead, S., Berg, A.C., Lo, W.Y., Doll´ ar, P., Girshick, R.: Segment anything. arXiv:2304.02643 (2023)

  4. [12]

    In: International Conference on Learning Representations (2022)

    Li, B., Weinberger, K.Q., Belongie, S., Koltun, V., Ranftl, R.: Language-driven semantic segmentation. In: International Conference on Learning Representations (2022)

  5. [13]

    arXiv preprint arXiv:2305.14093 (2023)

    Liu, K., Zhan, F., Zhang, J., Xu, M., Yu, Y., Saddik, A.E., Theobalt, C., Xing, E., Lu, S.: Weakly supervised 3d open-vocabulary segmentation. arXiv preprint arXiv:2305.14093 (2023)

  6. [14]

    Commu- nications of the ACM 65(1), 99–106 (2021)

    Mildenhall, B., Srinivasan, P.P., Tancik, M., Barron, J.T., Ramamoorthi, R., Ng, R.: Nerf: Representing scenes as neural radiance fields for view synthesis. Commu- nications of the ACM 65(1), 99–106 (2021)

  7. [15]

    ACM Trans

    M¨ uller, T., Evans, A., Schied, C., Keller, A.: Instant neural graphics primitives with a multiresolution hash encoding. ACM Trans. Graph. 41(4), 102:1–102:15 (Jul 2022)

  8. [16]

    arXiv preprint arXiv:2312.16084 (2023)

    Qin, M., Li, W., Zhou, J., Wang, H., Pfister, H.: Langsplat: 3d language gaussian splatting. arXiv preprint arXiv:2312.16084 (2023)

  9. [17]

    BMC medical imaging 15, 1–28 (2015)

    Taha, A.A., Hanbury, A.: Metrics for evaluating 3d medical image segmentation: analysis, selection, and tool. BMC medical imaging 15, 1–28 (2015)

  10. [18]

    In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition

    Tancik, M., Casser, V., Yan, X., Pradhan, S., Mildenhall, B., Srinivasan, P.P., Bar- ron, J.T., Kretzschmar, H.: Block-nerf: Scalable large scene neural view synthesis. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 8248–8258 (2022)

  11. [19]

    In: 2017 international conference on 3D vision (3DV)

    Tchapmi, L., Choy, C., Armeni, I., Gwak, J., Savarese, S.: Segcloud: Semantic segmentation of 3d point clouds. In: 2017 international conference on 3D vision (3DV). pp. 537–547. IEEE (2017) LabelGS: Label-Aware 3D Gaussian Splatting for 3D Scene Segmentation 15

  12. [20]

    arXiv preprint arXiv:2406.09414 (2024)

    Yang, L., Kang, B., Huang, Z., Zhao, Z., Xu, X., Feng, J., Zhao, H.: Depth anything v2. arXiv preprint arXiv:2406.09414 (2024)

  13. [21]

    arXiv preprint arXiv:2312.00732 (2023)

    Ye, M., Danelljan, M., Yu, F., Ke, L.: Gaussian grouping: Segment and edit any- thing in 3d scenes. arXiv preprint arXiv:2312.00732 (2023)

  14. [22]

    arXiv preprint arXiv:2311.11666 (2023)

    Ying, H., Yin, Y., Zhang, J., Wang, F., Yu, T., Huang, R., Fang, L.: Omniseg3d: Omniversal 3d segmentation via hierarchical contrastive learning. arXiv preprint arXiv:2311.11666 (2023)

  15. [23]

    In: Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition

    Zhou, D., Fang, J., Song, X., Liu, L., Yin, J., Dai, Y., Li, H., Yang, R.: Joint 3d instance segmentation and object detection for autonomous driving. In: Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 1839–1849 (2020)

  16. [24]

    In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition

    Zhou, S., Chang, H., Jiang, S., Fan, Z., Zhu, Z., Xu, D., Chari, P., You, S., Wang, Z., Kadambi, A.: Feature 3dgs: Supercharging 3d gaussian splatting to enable distilled feature fields. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp....

Pith tools

Reviewed August 5, 2026 · model on record in the stance chip above.