Pith. sign in

REVIEW 4 major objections 7 minor 1 cited by

SparseGrasp: Robotic Grasping via 3D Semantic Gaussian Splatting from Sparse Multi-View RGB Images

T0 review · 4 major / 7 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read SparseGrasp reconstructs a language-queryable 3D scene from three RGB images in about four minutes and uses it to grasp objects on a real robot, reporting 55/70 successes.

desk verdict A solid sparse-view language-guided grasping system; the real-robot results are plausible but the retrained GraspNet is under-specified and generalization beyond seven objects remains open. read the letter →

arxiv 2412.02140 v1 pith:ROAF457E submitted 2024-12-03 cs.RO cs.CVcs.LG

classification cs.ROcs.CVcs.LG
keywords 3DGaussianSplattinglanguage-guidedroboticgraspingsparse-viewRGBreconstructionsemanticdistillationopen-vocabularyrender-and-comparesceneupdatingPCAfeaturecompressionGraspNet
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

Language-guided grasping usually needs dense camera coverage and full re-reconstruction when a scene changes. SparseGrasp claims that a 3D semantic Gaussian Splatting scene, initialized from DUSt3R's dense point cloud and distilled with compressed CLIP features, can be built from just three RGB images in about four minutes. The paper reports 55 successful grasps out of 70 on a real KINOVA robot, against 38/70 for F3RM and 33/70 for LERF-TOGO even with 17 views. It also claims a render-and-compare step that relocates moved objects in about 200 ms, making multi-turn, open-vocabulary grasping in changing scenes practical. If correct, dense multi-view capture and slow full-scene retraining are no longer prerequisites for language-guided manipulation.

What carries the argument

The load-bearing mechanism is a 3D semantic Gaussian field: each Gaussian carries its usual position, scale, rotation, opacity, and color, plus a 16-dimensional semantic feature obtained by PCA-compressing MaskCLIP/FastSAM features. DUSt3R provides a dense point cloud as the initial geometry, which prevents sparse-view overfitting; during training the RGB loss and the semantic-feature L1 loss are optimized jointly with the same tile-based rasterizer. For scene updates, a render-and-compare loop uses MOG2 to detect moved pixels, matches them to Gaussians by mean semantic-feature cosine similarity, and optimizes only the moved object's translation and rotation against a combined pixel and 2D-position loss. Grasp poses come from a retrained GraspNet that consumes Gaussian parameters directly, so no voxelization is needed.

What would settle it

Replace the retrained GraspNet with the original GraspNet on the same three-view 3DGS scenes and measure grasp success on the same seven objects; a success rate that stays near 55/70 would show the retraining is not load-bearing, while a sharp drop would confirm that the system's performance rests on the simulated training transfer.

Watch

Extended reading notes

Core claim

On its own terms, the paper's central discovery is that 3D Gaussian Splatting can carry both geometry and open-vocabulary semantics well enough for robotic grasping when it is initialized with dense points from DUSt3R rather than COLMAP's sparse points, and when patch-level MaskCLIP features are averaged inside FastSAM masks, compressed by PCA from 768 to 16 dimensions, and distilled into Gaussians with a joint RGB-plus-semantics loss. From that representation, the system generates six-degree-of-freedom grasps directly from the Gaussian parameters via a retrained GraspNet, bypassing the voxelization and depth back-projection that the NeRF-based baselines need. For changed scenes, a render-and-compare optimization that adjusts only the translation and rotation of the moved object's Gaussians restores graspability in roughly 200 ms. The paper supports these claims with real-robot trials across seven objects, reporting 55/70 successes from three views, and with a moved-object study where the 200 ms update reaches 22/25 successes across five scenes.

Load-bearing premise

The reported grasp rates depend on the retrained GraspNet, trained on a modified GraspNet-1B dataset, transferring to the real KINOVA robot; if that sim-to-real transfer fails, the success numbers would not hold even if the reconstruction and semantics are accurate.

Editorial extensions

If this is right

  • A robot can complete a multi-turn pick-and-place sequence from a single three-image reconstruction, without rescanning between commands.
  • Scene updates for moved objects drop from minutes of full reconstruction to about 200 ms, so the system can react to a rearrangement while the operator waits.
  • The PCA compression shows that 16 dimensions suffice for open-vocabulary grounding in these scenes, which keeps the 3DGS memory and rendering cost near plain color rendering.
  • Because grasp generation runs directly on Gaussian parameters, the method avoids the precision loss that voxelization introduces in NeRF-based pipelines.

Reading between the lines

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

  • The same render-and-compare trick might extend beyond rigid moves to object removal or addition if combined with 3D inpainting, a direction the paper itself flags as future work.
  • If 16 PCA components suffice for grounding, then semantic fields for grasping may be intrinsically low-rank, which suggests that even cheaper feature distillation is possible.
  • The retrained GraspNet's inputs are Gaussian parameters; this design implies any representation expressible as anisotropic Gaussians could reuse the grasp head, but the sim-to-real gap remains the main uncertainty.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

4 major / 7 minor

Summary. The paper proposes SparseGrasp, a language-guided robotic grasping system that reconstructs a 3D semantic Gaussian Splatting scene from as few as three RGB images. It combines DUSt3R-based dense point initialization, MaskCLIP and FastSAM semantic feature extraction with PCA compression, and a render-and-compare module for updating moved objects. The authors report a 55/70 grasp success rate on a KINOVA Gen2 robot using three views, outperforming F3RM (38/70) and LERF-TOGO (33/70) at seventeen views, and scene updates in about 200 ms. The central claim is that sparse views and fast updates are sufficient for practical multi-turn open-vocabulary grasping.

Significance. If the reported results hold, SparseGrasp would be a meaningful advance in making language-guided manipulation practical in changing environments, reducing reconstruction from minutes with dense views to about four minutes with three views and enabling near-instant scene updates. The use of DUSt3R for dense initialization, PCA for feature compression, and a retrained GraspNet operating directly on Gaussian parameters are sensible engineering contributions. The real-robot evaluation on seven objects is a strength. However, the significance is currently limited by the absence of statistical rigor, the brevity of the grasp-network description, and the lack of validation for the sim-to-real transfer of the retrained GraspNet, which is the sole source of grasp poses.

major comments (4)
  1. [III-D and Table I] The retrained GraspNet is the only component that generates grasp poses, yet its description is only five sentences: no architecture, loss function, training schedule, or inference procedure is given for ingesting pi, si, qi. There is no held-out synthetic evaluation and no comparison against the original GraspNet on the same 3DGS output. The headline 55/70 success rate therefore depends on unvalidated sim-to-real transfer of this network. Please provide a standalone evaluation of the grasp model (e.g., held-out objects or scenes, an original-GraspNet baseline, or simulation results) and full implementation details.
  2. [Tables I and II] All success rates are reported as raw counts with no confidence intervals or statistical tests. With 10 trials per object, the 95% binomial confidence interval for 8/10 spans roughly 44% to 97%, so differences such as 8/10 vs 7/10 are not meaningful. Table II uses only five scenes per condition, and the improvement from 3/5 to 5/5 at different update times is not statistically reliable. The claim that SparseGrasp 'significantly outperforms' the baselines needs error bars, confidence intervals, or a paired statistical test across objects and scenes.
  3. [III-C, Eq. (6)] The render-and-compare loss in Eq. (6) uses d_gt, the MOG2-detected center of moved pixels, as supervision for the predicted object position. As presented, this is an alignment procedure that assumes a known foreground mask or center, not a predictor that autonomously detects arbitrary scene changes. The paper should explicitly state the assumptions on d_gt and evaluate robustness when MOG2 is imperfect, for example with overlapping objects, lighting changes, or partial occlusion, before Table II can support the claim of rapid updating in general changeable environments.
  4. [IV-B, Table III] The 2D IoU evaluation is the only quantitative semantic distillation result, but the paper does not specify how the continuous feature heatmaps are thresholded to binary masks, how novel-view ground-truth regions are obtained, or whether the IoU is averaged over all queries. Without this protocol detail, the reported values (e.g., Ours 0.71 vs F3RM 0.75 at 17 views) cannot be interpreted or reproduced. Please describe the evaluation protocol and report per-query or per-object variability.
minor comments (7)
  1. [Abstract and Introduction] The phrase 'handles scene updates fastly' is ungrammatical; use 'quickly' or 'fast'.
  2. [Fig. 5] The column labels in Fig. 5 appear fused as 'F3RMLERFOurs', making the comparison difficult to read; please separate the labels.
  3. [Fig. 8] The caption references the query 'metal hug' while the text uses 'metal mug'; this typo should be corrected.
  4. [III-D] The definition of the 'objectness' label for Gaussians is ambiguous for objects that touch or occlude each other; clarify how boundary Gaussians are assigned.
  5. [IV, Environment and Setup] The description 'equipped with three common cameras' is vague; please specify the camera models, resolution, and the extrinsic calibration procedure used to provide poses to DUSt3R.
  6. [References] References [4] and [43] are the same work (Object-aware Gaussian Splatting for Robotic Manipulation) and should be consolidated.
  7. [I, Contributions] The phrase 'significantly outperforms' in the Introduction and Conclusion should be qualified with the statistical evidence, or deferred to the results section where the uncertainty can be reported.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: SparseGrasp's central claims rest on external pretrained models and independent real-robot evaluations, not on fitted parameters or self-citations.

full rationale

No circular step reduces a claimed prediction to its own input. The reconstruction and semantic-distillation pipeline (Secs. III-A and III-B) is trained from sparse RGB views with losses defined against observed images and MaskCLIP/FastSAM features, so the quality of the 3D semantic field is independently constrained rather than assumed. The render-and-compare update in Eq. (6) optimizes an object's translation and rotation to match the observed moved-pixel center d_gt and the current image; this is a fitting procedure for scene update, not a reported predictive quantity, and it is not used to explain the paper's headline grasp-success numbers. The retrained GraspNet (Sec. III-D) is trained on modified GraspNet-1B scenes and then evaluated on a real KINOVA robot, so the real-robot grasp outcomes in Table I are not encoded in the training labels; the lack of held-out synthetic scenes and error bars is a robustness concern, not circularity. The only self-citations ([29]-[31]) appear in related work and carry no load-bearing argument. The main claims are compared against external F3RM and LERF-TOGO baselines using independent metrics such as grasp success, IoU, and runtime, so the central derivation is not equivalent to its inputs by construction.

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

The central claim rests on several domain assumptions about the reliability of DUSt3R initialization, MaskCLIP and FastSAM semantics, MOG2 moved-pixel detection, GraspNet sim-to-real transfer, and calibrated camera poses. These are standard assumptions in the field but are not independently verified in the paper. The hand-chosen loss weights and PCA dimension are free parameters that affect the reported results.

free parameters (4)
  • PCA component count = 16
    The semantic features are compressed to 16 dimensions; the paper shows 4, 8, 16, and 32 components qualitatively and chooses 16 without an ablation metric or quantitative criterion, Section III-B and Figure 9.
  • lambda_1 = 0.2
    Reconstruction loss weight in Eq. (4), set by hand.
  • lambda_2 = 1.0
    Semantic loss weight in Eq. (3), set by hand.
  • lambda_3 = 0.1
    Weight for 2D distance loss in the render-and-compare update, Eq. (6), set by hand.
assumptions (5)
  • domain assumption DUSt3R dense point clouds from sparse RGB views provide a sufficiently accurate geometric initialization for 3DGS.
    Used in Section III-A and Figure 3 to avoid COLMAP sparse initialization; if DUSt3R geometry is poor, reconstruction and grasping degrade.
  • domain assumption MaskCLIP patch features averaged within FastSAM masks capture the semantic information needed for open-vocabulary grounding.
    Section III-A; the grounding quality depends entirely on these features, and the paper evaluates them only on seven household objects.
  • domain assumption MOG2 background subtraction correctly identifies moved pixels in the current frame.
    Section III-C; the render-and-compare update uses MOG2 to locate moved pixels, and failures at 50 ms suggest sensitivity to this step.
  • domain assumption GraspNet retrained on reconstructed GraspNet-1B scenes with added Gaussian noise transfers to the real KINOVA robot and KG-3 gripper.
    Section III-D; the grasp generation is not standard GraspNet inference, and the sim-to-real transfer is not separately validated.
  • domain assumption Calibrated camera poses are available for each sparse view.
    Section IV Implementation Details; the paper feeds calibrated camera poses to DUSt3R, requiring extrinsic calibration that may not hold in unconstrained deployments.

how reviews work

0 comments
Cite this review

Pith. "Pith review of SparseGrasp: Robotic Grasping via 3D Semantic Gaussian Splatting from Sparse Multi-View RGB Images." pith.science (2026). https://pith.science/paper/ROAF457E

@misc{pith2026241202140,
  author       = {Pith},
  title        = {Pith review of: SparseGrasp: Robotic Grasping via 3D Semantic Gaussian Splatting from Sparse Multi-View RGB Images},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/ROAF457E}},
  note         = {Machine review of arXiv:2412.02140}
}
read the original abstract

Language-guided robotic grasping is a rapidly advancing field where robots are instructed using human language to grasp specific objects. However, existing methods often depend on dense camera views and struggle to quickly update scenes, limiting their effectiveness in changeable environments. In contrast, we propose SparseGrasp, a novel open-vocabulary robotic grasping system that operates efficiently with sparse-view RGB images and handles scene updates fastly. Our system builds upon and significantly enhances existing computer vision modules in robotic learning. Specifically, SparseGrasp utilizes DUSt3R to generate a dense point cloud as the initialization for 3D Gaussian Splatting (3DGS), maintaining high fidelity even under sparse supervision. Importantly, SparseGrasp incorporates semantic awareness from recent vision foundation models. To further improve processing efficiency, we repurpose Principal Component Analysis (PCA) to compress features from 2D models. Additionally, we introduce a novel render-and-compare strategy that ensures rapid scene updates, enabling multi-turn grasping in changeable environments. Experimental results show that SparseGrasp significantly outperforms state-of-the-art methods in terms of both speed and adaptability, providing a robust solution for multi-turn grasping in changeable environment.

Figures

Figures reproduced from arXiv: 2412.02140 by the authors.

Figure 1
Figure 1. We present a comparison between our SparseGrasp and F3RM under both sparse and dense view settings. The top row shows [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Our architecture. It starts with collecting sparse view images and generating dense point clouds to initialize 3DGS. [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Comparison of dense point initialization v.s. sparse point initialization in sparse view images. Initializing with sparse [PITH_FULL_IMAGE:figures/full_fig_p003_3.png] view at source ↗
Figures from the paper (6 more)
Figure 4
Figure 4. Figure 4: Effectiveness of our grasp model: Unlike original [PITH_FULL_IMAGE:figures/full_fig_p004_4.png]
Figure 5
Figure 5. Figure 5: Qualitative results of reconstruction and semantic distillation results. [PITH_FULL_IMAGE:figures/full_fig_p005_5.png]
Figure 6
Figure 6. Figure 6: Qualtitative results of language-guided grasping in the static environment. (Top Row) Heatmaps of given text queries. [PITH_FULL_IMAGE:figures/full_fig_p005_6.png]
Figure 7
Figure 7. Figure 7: Optimization process of our Render&Compare mod [PITH_FULL_IMAGE:figures/full_fig_p005_7.png]
Figure 8
Figure 8. Figure 8: Rendered images and heatmaps for the query ‘metal [PITH_FULL_IMAGE:figures/full_fig_p006_8.png]
Figure 9
Figure 9. Figure 9: Qualitative results of heatmaps when applying PCA [PITH_FULL_IMAGE:figures/full_fig_p006_9.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. VistaVLA: Geometry- and Semantic-Aware 3D Gaussian-Grounded VLA for Robotic Manipulation

    cs.RO 2026-07 conditional novelty 5.5 of 10

    VistaVLA lifts multi-view vision-language features into 3D Gaussians, compresses them 99% via Merge-then-Query, and improves real-robot manipulation success by ~23% over baselines.

Reference graph

Works this paper leans on

43 extracted references · 16 canonical work pages · cited by 1 Pith paper

  1. [1]

    Distilled feature fields enable few-shot language-guided manipula- tion,

    W. Shen, G. Yang, A. Yu, J. Wong, L. P. Kaelbling, and P. Isola, “Distilled feature fields enable few-shot language-guided manipula- tion,” arXiv preprint arXiv:2308.07931 , 2023

  2. [2]

    Language embedded radiance fields for zero- shot task-oriented grasping,

    A. Rashid, S. Sharma, C. M. Kim, J. Kerr, L. Y . Chen, A. Kanazawa, and K. Goldberg, “Language embedded radiance fields for zero- shot task-oriented grasping,” in 7th Annual Conference on Robot Learning, 2023. [Online]. Available: https://openreview.net/forum?id= k-Fg8JDQmc

  3. [3]

    Dust3r: Geometric 3d vision made easy,

    S. Wang, V . Leroy, Y . Cabon, B. Chidlovskii, and J. Revaud, “Dust3r: Geometric 3d vision made easy,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2024, pp. 20 697–20 709

  4. [4]

    Object-aware gaussian splatting for robotic manipulation,

    Y . Li and D. Pathak, “Object-aware gaussian splatting for robotic manipulation,” in ICRA 2024 Workshop on 3D Visual Representations for Robot Manipulation , 2024

  5. [5]

    Gnfactor: Multi-task real robot learning with generalizable neural feature fields,

    Y . Ze, G. Yan, Y .-H. Wu, A. Macaluso, Y . Ge, J. Ye, N. Hansen, L. E. Li, and X. Wang, “Gnfactor: Multi-task real robot learning with generalizable neural feature fields,” in Conference on Robot Learning. PMLR, 2023, pp. 284–301

  6. [6]

    Learning transferable visual models from natural language supervision,

    A. Radford, J. W. Kim, C. Hallacy, A. Ramesh, G. Goh, S. Agarwal, G. Sastry, A. Askell, P. Mishkin, J. Clark et al., “Learning transferable visual models from natural language supervision,” in International conference on machine learning . PMLR, 2021, pp. 8748–8763

  7. [7]

    3d gaussian splatting for real-time radiance field rendering

    B. Kerbl, G. Kopanas, T. Leimk ¨uhler, and G. Drettakis, “3d gaussian splatting for real-time radiance field rendering.” ACM Trans. Graph., vol. 42, no. 4, pp. 139–1, 2023

  8. [8]

    Extract free dense labels from clip,

    C. Zhou, C. C. Loy, and B. Dai, “Extract free dense labels from clip,” in European Conference on Computer Vision . Springer, 2022, pp. 696–712

Show all 43 references
  1. [9]

    Segment anything,

    A. Kirillov, E. Mintun, N. Ravi, H. Mao, C. Rolland, L. Gustafson, T. Xiao, S. Whitehead, A. C. Berg, W.-Y . Lo et al. , “Segment anything,” in Proceedings of the IEEE/CVF International Conference on Computer Vision , 2023, pp. 4015–4026

  2. [10]

    Graspnet-1billion: A large- scale benchmark for general object grasping,

    H.-S. Fang, C. Wang, M. Gou, and C. Lu, “Graspnet-1billion: A large- scale benchmark for general object grasping,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2020, pp. 11 444–11 453

  3. [11]

    Nerf: Representing scenes as neural radiance fields for view synthesis,

    B. Mildenhall, P. P. Srinivasan, M. Tancik, J. T. Barron, R. Ramamoor- thi, and R. Ng, “Nerf: Representing scenes as neural radiance fields for view synthesis,” Communications of the ACM , vol. 65, no. 1, pp. 99–106, 2021

  4. [12]

    Evo-nerf: Evolving nerf for sequen- tial robot grasping of transparent objects,

    J. Kerr, L. Fu, H. Huang, Y . Avigal, M. Tancik, J. Ichnowski, A. Kanazawa, and K. Goldberg, “Evo-nerf: Evolving nerf for sequen- tial robot grasping of transparent objects,” in Conference on Robot Learning. PMLR, 2023, pp. 353–367

  5. [13]

    Dex-nerf: Using a neural radiance field to grasp transparent objects,

    J. Ichnowski, Y . Avigal, J. Kerr, and K. Goldberg, “Dex-nerf: Using a neural radiance field to grasp transparent objects,” arXiv preprint arXiv:2110.14217, 2021

  6. [14]

    Graspnerf: Multiview-based 6-dof grasp detection for transparent and specular ob- jects using generalizable nerf,

    Q. Dai, Y . Zhu, Y . Geng, C. Ruan, J. Zhang, and H. Wang, “Graspnerf: Multiview-based 6-dof grasp detection for transparent and specular ob- jects using generalizable nerf,” in 2023 IEEE International Conference on Robotics and Automation (ICRA) . IEEE, 2023, pp. 1757–1763

  7. [15]

    Nerf-supervision: Learning dense object descriptors from neural radiance fields,

    L. Yen-Chen, P. Florence, J. T. Barron, T.-Y . Lin, A. Rodriguez, and P. Isola, “Nerf-supervision: Learning dense object descriptors from neural radiance fields,” in 2022 International Conference on Robotics and Automation (ICRA) . IEEE, 2022, pp. 6496–6503

  8. [16]

    imap: Implicit map- ping and positioning in real-time,

    E. Sucar, S. Liu, J. Ortiz, and A. J. Davison, “imap: Implicit map- ping and positioning in real-time,” in Proceedings of the IEEE/CVF International Conference on Computer Vision , 2021, pp. 6229–6238

  9. [17]

    Nice-slam: Neural implicit scalable encoding for slam,

    Z. Zhu, S. Peng, V . Larsson, W. Xu, H. Bao, Z. Cui, M. R. Oswald, and M. Pollefeys, “Nice-slam: Neural implicit scalable encoding for slam,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2022, pp. 12 786–12 796

  10. [18]

    Nerf-slam: Real-time dense monocular slam with neural radiance fields,

    A. Rosinol, J. J. Leonard, and L. Carlone, “Nerf-slam: Real-time dense monocular slam with neural radiance fields,” in 2023 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) . IEEE, 2023, pp. 3437–3444

  11. [19]

    Vision-only robot navigation in a neural radiance world,

    M. Adamkiewicz, T. Chen, A. Caccavale, R. Gardner, P. Culbertson, J. Bohg, and M. Schwager, “Vision-only robot navigation in a neural radiance world,” IEEE Robotics and Automation Letters , vol. 7, no. 2, pp. 4606–4613, 2022

  12. [20]

    Splatam: Splat, track & map 3d gaussians for dense rgb-d slam,

    N. Keetha, J. Karhade, K. M. Jatavallabhula, G. Yang, S. Scherer, D. Ramanan, and J. Luiten, “Splatam: Splat, track & map 3d gaussians for dense rgb-d slam,” arXiv preprint arXiv:2312.02126 , 2023

  13. [21]

    Gaussian-slam: Photo-realistic dense slam with gaussian splatting,

    V . Yugay, Y . Li, T. Gevers, and M. R. Oswald, “Gaussian-slam: Photo-realistic dense slam with gaussian splatting,” arXiv preprint arXiv:2312.10070, 2023

  14. [22]

    Gs- slam: Dense visual slam with 3d gaussian splatting,

    C. Yan, D. Qu, D. Wang, D. Xu, Z. Wang, B. Zhao, and X. Li, “Gs- slam: Dense visual slam with 3d gaussian splatting,” arXiv preprint arXiv:2311.11700, 2023

  15. [23]

    Manigaussian: Dynamic gaussian splatting for multi-task robotic manipulation,

    G. Lu, S. Zhang, Z. Wang, C. Liu, J. Lu, and Y . Tang, “Manigaussian: Dynamic gaussian splatting for multi-task robotic manipulation,”arXiv preprint arXiv:2403.08321, 2024

  16. [24]

    Open-vocabulary object retrieval

    S. Guadarrama, E. Rodner, K. Saenko, N. Zhang, R. Farrell, J. Don- ahue, and T. Darrell, “Open-vocabulary object retrieval.” in Robotics: science and systems , vol. 2, no. 5, 2014, p. 6

  17. [25]

    Interactively picking real-world objects with un- constrained spoken language instructions,

    J. Hatori, Y . Kikuchi, S. Kobayashi, K. Takahashi, Y . Tsuboi, Y . Unno, W. Ko, and J. Tan, “Interactively picking real-world objects with un- constrained spoken language instructions,” in 2018 IEEE International Conference on Robotics and Automation (ICRA) . IEEE, 2018, pp. ...

  18. [26]

    Interactive visual grounding of re- ferring expressions for human-robot interaction,

    M. Shridhar and D. Hsu, “Interactive visual grounding of re- ferring expressions for human-robot interaction,” arXiv preprint arXiv:1806.03831, 2018

  19. [27]

    Robot object retrieval with contextual natural language queries,

    T. Nguyen, N. Gopalan, R. Patel, M. Corsaro, E. Pavlick, and S. Tellex, “Robot object retrieval with contextual natural language queries,” arXiv preprint arXiv:2006.13253 , 2020

  20. [28]

    A joint network for grasp detection conditioned on natural language commands,

    Y . Chen, R. Xu, Y . Lin, and P. A. Vela, “A joint network for grasp detection conditioned on natural language commands,” in 2021 IEEE International Conference on Robotics and Automation (ICRA). IEEE, 2021, pp. 4576–4582

  21. [29]

    Learning 6-dof object poses to grasp category-level objects by language instructions,

    C. Cheang, H. Lin, Y . Fu, and X. Xue, “Learning 6-dof object poses to grasp category-level objects by language instructions,” in 2022 International Conference on Robotics and Automation (ICRA). IEEE, 2022, pp. 8476–8482

  22. [30]

    Language guided robotic grasping with fine-grained instructions,

    Q. Sun, H. Lin, Y . Fu, Y . Fu, and X. Xue, “Language guided robotic grasping with fine-grained instructions,” in 2023 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) . IEEE, 2023, pp. 1319–1326

  23. [31]

    Sar-net: Shape alignment and recovery network for category-level 6d object pose and size estimation,

    H. Lin, Z. Liu, C. Cheang, Y . Fu, G. Guo, and X. Xue, “Sar-net: Shape alignment and recovery network for category-level 6d object pose and size estimation,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2022, pp. 6707–6717

  24. [32]

    Cliport: What and where pathways for robotic manipulation,

    M. Shridhar, L. Manuelli, and D. Fox, “Cliport: What and where pathways for robotic manipulation,” in Conference on Robot Learning. PMLR, 2022, pp. 894–906

  25. [33]

    Structure-from-motion revisited,

    J. L. Schonberger and J.-M. Frahm, “Structure-from-motion revisited,” in Proceedings of the IEEE conference on computer vision and pattern recognition, 2016, pp. 4104–4113

  26. [34]

    State of the art on 3d reconstruction with rgb-d cameras,

    M. Zollh ¨ofer, P. Stotko, A. G¨orlitz, C. Theobalt, M. Nießner, R. Klein, and A. Kolb, “State of the art on 3d reconstruction with rgb-d cameras,” in Computer graphics forum, vol. 37, no. 2. Wiley Online Library, 2018, pp. 625–652

  27. [35]

    Robust 3d reconstruction with an rgb-d camera,

    K. Wang, G. Zhang, and H. Bao, “Robust 3d reconstruction with an rgb-d camera,” IEEE Transactions on Image Processing , vol. 23, no. 11, pp. 4893–4906, 2014

  28. [36]

    Lerf: Language embedded radiance fields,

    J. Kerr, C. M. Kim, K. Goldberg, A. Kanazawa, and M. Tancik, “Lerf: Language embedded radiance fields,” in Proceedings of the IEEE/CVF International Conference on Computer Vision , 2023, pp. 19 729–19 739

  29. [37]

    Fast segment anything,

    X. Zhao, W. Ding, Y . An, Y . Du, T. Yu, M. Li, M. Tang, and J. Wang, “Fast segment anything,” arXiv preprint arXiv:2306.12156 , 2023

  30. [38]

    Feature 3dgs: Supercharging 3d gaussian splatting to enable distilled feature fields,

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

  31. [39]

    Langsplat: 3d language gaussian splatting,

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

  32. [40]

    Improved adaptive gaussian mixture model for back- ground subtraction,

    Z. Zivkovic, “Improved adaptive gaussian mixture model for back- ground subtraction,” in Proceedings of the 17th International Confer- ence on Pattern Recognition, 2004. ICPR 2004. , vol. 2. IEEE, 2004, pp. 28–31

  33. [41]

    Gaussian grouping: Segment and edit anything in 3d scenes,

    M. Ye, M. Danelljan, F. Yu, and L. Ke, “Gaussian grouping: Segment and edit anything in 3d scenes,” arXiv preprint arXiv:2312.00732 , 2023

  34. [42]

    Track2act: Predicting point tracks from internet videos enables diverse zero-shot robot manipulation,

    H. Bharadhwaj, R. Mottaghi, A. Gupta, and S. Tulsiani, “Track2act: Predicting point tracks from internet videos enables diverse zero-shot robot manipulation,” arXiv preprint arXiv:2405.01527 , 2024

  35. [43]

    Object-aware gaussian splatting for robotic manipulation,

    Y . Li and D. Pathak, “Object-aware gaussian splatting for robotic manipulation,” in ICRA 2024 Workshop on 3D Visual Representations for Robot Manipulation , 2024. [Online]. Available: https://openreview.net/forum?id=gdRI43hDgo

Pith tools

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