PartialBiGrasp: Inferring Hidden Local Geometry for Bimanual Grasping from Partial Views

TL;DR

PartialBiGrasp leverages convolutional occupancy networks to infer hidden local geometry from partial point clouds, enabling stable dual-arm grasping with 55.16% force-closure rate and 67.87% success on DG16M.

cs.RO 🔴 Advanced 2026-08-20 83 views
Ayush Kaura Vignesh Vembar Md Faizal Karim Keshab Patra K Madhava Krishna
Robotics Bimanual Manipulation Point Cloud Processing Geometric Reasoning Deep Learning

Key Findings

Methodology

The proposed PartialBiGrasp framework employs convolutional occupancy networks (ConvOccNet) to implicitly learn geometric features from partial point clouds. The architecture consists of a global geometry encoder that captures overall object structure and a local geometry encoder focusing on grasp-specific regions. The global encoder processes the entire point cloud projected onto a triplane representation, aggregated via a shared 2D U-Net, producing a continuous feature field. The local encoder operates on grasp-centered point crops, capturing fine-grained properties such as thickness and surface continuation. Candidate single-arm grasps are generated by sampling surface points and predicting graspability, approach vectors, and pose parameters through multiple prediction heads. A learned force-closure critic evaluates grasp pairs for stability, and a sampling-based local occupancy optimizer refines grasp poses to minimize collisions and improve contact quality. The model is trained on DG16M with multi-stage supervision, combining occupancy, grasp pose, and graspability labels, and validated through extensive simulation and real-world experiments.

Key Results

  • On the DG16M benchmark, PartialBiGrasp achieved a force-closure (FC%) of 55.16% and a grasp success rate (GS%) of 67.87%, outperforming baselines such as ContactGraspNet and DAGDiff. In real-world noisy point clouds, FC% remained at 51.06%, and GS% reached 81.54%, with collision rates dropping to 17.48%. Coverage of graspable regions increased to 16.96%. These results demonstrate the method's robustness across diverse large objects and partial observations, with significant improvements in stability and collision avoidance.
  • Ablation studies confirmed that integrating global and local features, along with occupancy-guided refinement, is critical. Removing local refinement or residual connections led to performance drops of over 20% in FC%. The approach generalizes well to unseen objects and complex geometries, maintaining high stability under occlusion and partial views.
  • Compared to explicit reconstruction or dense point cloud completion methods, PartialBiGrasp directly reasons about geometry through implicit representations, avoiding errors from surface reconstruction and reducing computational overhead. Its end-to-end learning pipeline enables real-time inference, making it suitable for practical robotic applications.

Significance

This work addresses a fundamental challenge in robotic manipulation: performing stable dual-arm grasping under partial observations. By moving away from reliance on complete object models, the proposed framework enhances robots' ability to operate in unstructured, cluttered environments typical of real-world scenarios. The implicit geometric reasoning approach provides a scalable solution for large-object manipulation, crucial for industrial automation, logistics, and service robotics. The method's robustness to noise and occlusion signifies a step toward truly autonomous systems capable of complex object handling without extensive prior modeling, thus broadening the scope of robotic applications in dynamic, unpredictable settings.

Technical Contribution

The core technical innovation lies in applying convolutional occupancy networks to partial point cloud data for geometric inference, enabling the model to reason about hidden local features critical for grasp stability. The hierarchical architecture combines global shape understanding with local surface detail, facilitating accurate grasp candidate generation and refinement. The force-closure critic, trained on synthetic data, provides physically grounded stability assessment, integrated seamlessly with a sampling-based local optimization. This unified framework advances the state-of-the-art in learning-based bimanual grasping by effectively handling partial observations and complex geometries, without explicit surface reconstruction or dense supervision.

Novelty

This research is the first to explicitly address dual-arm grasp generation directly from partial point clouds using implicit geometric reasoning. Unlike prior works that depend on complete shape reconstruction or dense supervision, it leverages convolutional occupancy networks to infer hidden local geometry, enabling stable grasping in occluded scenarios. The integration of multi-scale global and local features, combined with a learned force-closure critic and local occupancy optimization, constitutes a novel approach that significantly enhances robustness and generalization in large-object manipulation under partial observations.

Limitations

  • The current framework does not incorporate kinematic constraints or motion planning, which may lead to infeasible grasp poses in real robotic systems. Additional modules are needed to validate and execute the generated grasps.
  • Handling extreme occlusions or highly complex geometries remains challenging, as the model's inference of hidden features may become unreliable under severe information loss.
  • Real-time performance in highly dynamic environments or multi-object scenarios needs further optimization. Future work should integrate perception, planning, and control for end-to-end autonomous manipulation.

Future Work

Future directions include integrating motion planning and kinematic feasibility checks to ensure grasp executability. Extending the framework to multi-object scenes and dynamic environments will broaden practical applicability. Incorporating tactile and force sensing could enhance local geometric inference and grasp stability. Additionally, optimizing inference speed and deploying on embedded systems will facilitate real-time autonomous operation.

AI Executive Summary

Robotic manipulation of large, complex objects remains a significant challenge in automation, especially under partial observation conditions common in real-world environments. Traditional approaches rely heavily on complete 3D models or dense point cloud reconstructions, which are often impractical due to occlusions, sensor noise, and limited viewpoints. This limitation hampers the deployment of autonomous robots in tasks like warehouse handling, industrial assembly, or disaster response, where objects are often only partially visible.

Addressing this critical gap, the present study introduces PartialBiGrasp, a novel framework that leverages implicit geometric reasoning via convolutional occupancy networks (ConvOccNet) to infer hidden local geometry directly from partial point clouds. The core idea is to enable the robot to 'guess' the unseen parts of an object, such as thickness, edges, and surface continuation, which are vital for stable grasping. The architecture comprises a global geometry encoder that captures the overall shape and a local geometry encoder that focuses on grasp-specific regions. These encoders generate continuous feature fields, allowing the model to query geometric information at arbitrary points, even beyond the visible surface.

The method proceeds in two main stages: candidate grasp generation and grasp refinement. First, candidate single-arm grasps are predicted based on the inferred global shape, with graspability and pose parameters estimated via multiple prediction heads. These candidates are then evaluated for stability using a learned force-closure critic, which assesses whether the grasp pairs can jointly sustain the object without slipping or collapsing. To further improve grasp quality, a sampling-based local occupancy optimizer refines the grasp poses, reducing collisions and ensuring stable contact.

Experimental validation on the DG16M dataset and real-world noisy point clouds demonstrates that PartialBiGrasp achieves a force-closure rate of 55.16% and a grasp success rate of 67.87% in simulation, outperforming existing methods significantly. In real-world tests, it maintains a success rate of over 81%, with low collision incidences, confirming its robustness and practical utility. The approach excels in handling occlusions, sparse graspable regions, and complex geometries, making it highly suitable for industrial and service robotics applications.

This work marks a substantial advancement in robotic grasping, moving beyond the limitations of explicit shape reconstruction and dense supervision. By directly reasoning about hidden geometry, it opens new possibilities for autonomous manipulation in unstructured environments. Future work will focus on integrating motion planning, real-time inference, and multi-object scenarios, aiming to develop fully autonomous, adaptable robotic systems capable of complex object handling under real-world conditions.

Deep Analysis

Background

Robotic grasping has evolved from simple rule-based control to sophisticated learning-based methods. Early approaches relied on precise geometric models and inverse kinematics, exemplified by classical algorithms like GraspIt! and Dex-Net, which used dense 3D models for grasp synthesis. Recent advances include deep neural networks such as PointNet, DGCNN, and GQ-CNN, which learn features directly from point clouds or images, enabling more flexible grasp prediction. However, these methods typically assume access to complete object geometries, limiting their effectiveness in cluttered or occluded environments. The emergence of implicit geometric representations, such as occupancy networks and signed distance functions, has provided new tools for reasoning about shape completion and local geometry inference. Despite these developments, most existing works focus on single-arm grasping or rely on explicit shape reconstruction, which can be computationally expensive and error-prone, especially under partial observations. The challenge remains to develop methods capable of robustly inferring hidden geometry and generating stable dual-arm grasps in real-world, occlusion-rich scenarios.

Core Problem

The core problem addressed in this work is the difficulty of generating stable dual-arm grasps from partial point clouds. In practical settings, objects are often only partially visible due to occlusions, limited viewpoints, or sensor noise. Traditional methods depend on complete shape information or dense point cloud reconstructions, which are not always feasible. Without accurate knowledge of hidden local geometry—such as surface thickness, edge continuation, or contact regions—robots risk generating grasps that are unstable, collide with the object, or fail to achieve force closure. Moreover, ensuring that two grasping points form a physically stable pair adds complexity, as the joint configuration must satisfy force-closure constraints and avoid collisions. Addressing these issues requires a method capable of inferring the unseen parts of the object and reasoning about grasp stability under incomplete data, which is a significant challenge in robotic manipulation.

Innovation

This paper introduces several key innovations: 1) The use of convolutional occupancy networks (ConvOccNet) to implicitly learn and infer hidden local geometry from partial point clouds, enabling the reasoning about unobserved surface properties. 2) A hierarchical architecture combining global shape encoding with grasp-centered local geometry encoding, facilitating multi-scale understanding of object structure and contact regions. 3) A force-closure critic network trained to evaluate the stability of grasp pairs, ensuring physically feasible dual-arm configurations. 4) A sampling-based local occupancy optimization that refines grasp poses by predicting and minimizing collisions and contact inconsistencies. These innovations collectively allow the system to generate robust, collision-free, and force-closure compliant dual-arm grasps directly from incomplete observations, a significant step forward from prior methods relying on explicit shape reconstruction or dense supervision.

Methodology

  • �� Input: Single RGB-D image and segmentation mask, projected into point cloud P. • Global geometry encoding: Extract rotation-equivariant features via point-based encoder, project onto triplane, process with shared U-Net to produce continuous feature field. • Local geometry encoding: Sample grasp-centered point crops, encode with shared local encoder to capture fine features like thickness and surface continuation. • Candidate grasp generation: Sample points on the object surface, predict graspability, approach vectors, and pose parameters using multi-head prediction. • Grasp pair evaluation: Concatenate features from two candidate grasps, evaluate with force-closure critic to determine stability. • Grasp refinement: Use local occupancy predictions and sampling-based optimization to iteratively adjust grasp poses, minimizing collisions and maximizing contact stability. • Training: Multi-stage supervision on DG16M dataset, including occupancy, grasp pose, and graspability labels, with loss functions such as BCE and L1. • Testing: Generate grasp pairs, evaluate stability, refine, and execute in simulation and real-world scenarios.

Experiments

The framework was trained on the DG16M dataset, which contains diverse large objects with annotated grasp contacts. Evaluation involved simulation tests measuring force closure percentage (FC%), grasp success rate (GS%), collision rate (PC%), and coverage of graspable regions. The model was compared against baselines like ContactGraspNet, DAGDiff, RecGen+DAGDiff, and VLM-based methods. In simulation, PartialBiGrasp achieved an FC% of 55.16% and GS% of 67.87%, outperforming baselines significantly. Real-world experiments involved noisy point clouds captured by Realsense D455 sensors, where the method maintained over 51% FC% and 81% GS%, with collision rates below 20%. Ablation studies confirmed the importance of multi-scale feature fusion and local occupancy refinement, with performance drops observed when these components were removed. The system was deployed on physical dual-arm robots (xArm7 and xArm6 Lite), successfully manipulating various large objects under real conditions.

Results

Quantitative results demonstrate that PartialBiGrasp surpasses existing methods in stability and collision avoidance. The force-closure rate of 55.16% and grasp success rate of 67.87% on DG16M indicate high reliability, especially given the partial observation constraint. In real-world tests, the success rate remained above 81%, with collision rates reduced to 17.48%, confirming robustness against sensor noise and occlusion. Ablation experiments showed that removing local occupancy refinement decreased FC% by over 15%, highlighting its critical role. The approach also achieved higher coverage of graspable regions, demonstrating comprehensive surface understanding. These results validate the effectiveness of implicit geometric reasoning for complex, large-object manipulation in practical scenarios.

Applications

This method is highly suitable for industrial automation, warehouse logistics, and assistive robotics, where objects are often large, occluded, or partially visible. It enables autonomous systems to generate stable dual-arm grasps without requiring complete shape models, reducing reliance on dense point cloud reconstruction. The framework can be integrated into robotic manipulation pipelines for tasks like loading/unloading, assembly, or disaster response, where quick and reliable grasping is essential. Its ability to handle noisy, incomplete data makes it adaptable to real-world environments, facilitating deployment in unstructured settings. Future integration with motion planning and control modules will further enhance its practical utility.

Limitations & Outlook

Currently, the framework does not incorporate explicit kinematic or motion planning constraints, which may lead to infeasible grasps in real robotic systems. The inference of hidden geometry may be unreliable under extreme occlusion or highly complex geometries, affecting grasp stability. Real-time performance in dynamic environments remains a challenge, as the current implementation prioritizes accuracy over speed. Additionally, the method assumes at least one visible contact point per grasp, which may not hold in highly cluttered scenes. Future work should focus on integrating motion planning, sensor fusion, and real-time optimization to address these limitations.

Plain Language Accessible to non-experts

想象你在厨房里准备做饭,但只看到锅的一角,其他部分被锅盖挡住了。你需要猜测锅的形状、位置和大小,才能把锅夹起来放到灶台上。这个过程就像机器人用部分的点云“猜测”隐藏的锅的形状一样。传统的方法就像你必须看到整个锅才能抓住它,但实际上,厨房里很多东西都被遮挡,不能总是看到全部。这个研究就像教机器人如何在只看到锅一角的情况下,依靠“猜测”和“推理”找到最佳的抓取点。它用一种特殊的“隐形几何”技术,像你用手感知锅的厚度和边缘一样,帮助机器人在复杂环境中稳稳抓住大物体。这样,机器人就能在仓库、工厂或家里,灵活应对各种遮挡和复杂形状的任务,就像你用手摸索锅一样聪明。

ELI14 Explained like you're 14

想象你在玩一个拼图游戏,但只看到拼图的一部分。你需要猜猜剩下的部分长什么样,才能把拼图拼好。机器人也是一样,它通过只看到物体的一部分点云,试图猜出隐藏的部分,然后找到最好的抓取位置。以前的方法就像你必须看到整个拼图才能拼,但这不总是可能。这个新方法就像你用手感知拼图的边缘和厚度,帮助机器人在只看到一角的情况下,也能稳稳地抓住大物体。它用一种叫做“隐式几何”的技术,让机器人可以“猜测”隐藏的细节,就像你用手摸到拼图的边缘一样。这样,机器人在工厂、仓库或家庭中,就能更聪明、更灵活地操作各种大物体,即使只看到部分信息,也能做出正确的动作。

Abstract

Dual-arm robotic grasping is essential for manipulating large, heavy, and geometrically complex objects that cannot be reliably handled using a single manipulator. These large objects often contain only sparse graspable regions determined by local geometric properties such as thickness, edge structure, and gripper clearance. Prior bimanual grasping methods assume access to a full point cloud of the object which inherently contains this geometric information, but may not be accessible in real scenarios. This work proposes PartialBiGrasp, a dual-arm grasp generation framework that operates directly on partial point cloud observations. Our model learns geometric features implicitly through convolutional occupancy networks, enabling local reasoning about graspability, collision-free contact regions, and object thickness. We leverage this understanding to generate force-closure compliant grasp pairs, which are further refined using a sampling-based optimization to correct for ambiguity caused by incomplete geometry. We evaluate our approach using analytical force-closure metrics, large-scale simulation experiments, and real-world robot evaluations on noisy partial point clouds of novel objects, demonstrating robust and physically stable dual-arm grasp generation.

cs.RO

References (20)

DG16M: A Large-Scale Dataset for Dual-Arm Grasping with Force-Optimized Grasps

Md Faizal Karim, Mohammed Saad Hashmi, Shreya Bollimuntha et al.

2025 5 citations ⭐ Influential View Analysis →

Real-Time Simultaneous Multi-Object 3D Shape Reconstruction, 6DoF Pose Estimation and Dense Grasp Prediction

Shubh Agrawal, Nikhil Chavan-Dafle, Isaac Kasahara et al.

2023 6 citations View Analysis →

A Review of Robot Learning for Manipulation: Challenges, Representations, and Algorithms

Oliver Kroemer, S. Niekum, G. Konidaris

2019 521 citations View Analysis →

BiGraspFormer: End-to-End Bimanual Grasp Transformer

Kangmin Kim, Seunghyeok Back, Geonhyup Lee et al.

2025 1 citations View Analysis →

Robotic Grasping from Classical to Modern: A Survey

Hanbo Zhang, Jian Tang, Shiguang Sun et al.

2022 60 citations View Analysis →

6-DOF GraspNet: Variational Grasp Generation for Object Manipulation

A. Mousavian, Clemens Eppner, D. Fox

2019 706 citations View Analysis →

DA$^{2}$ Dataset: Toward Dexterity-Aware Dual-Arm Grasping

Guangyao Zhai, Yu Zheng, Ziwei Xu et al.

2022 25 citations View Analysis →

Contact-GraspNet: Efficient 6-DoF Grasp Generation in Cluttered Scenes

M. Sundermeyer, A. Mousavian, Rudolph Triebel et al.

2021 545 citations View Analysis →

Task-Aware Bimanual Affordance Prediction via VLM-Guided Semantic-Geometric Reasoning

Fabian Hahne, Vignesh Prasad, Georgia Chalvatzaki et al.

2026 2 citations View Analysis →

Dual arm manipulation - A survey

Christian Smith, Y. Karayiannidis, L. Nalpantidis et al.

2012 584 citations

GraspGen: A Diffusion-based Framework for 6-DOF Grasping with On-Generator Training

Adithyavairavan Murali, Balakumar Sundaralingam, Yu-Wei Chao et al.

2025 43 citations View Analysis →

End-to-End Object Detection with Transformers

Nicolas Carion, Francisco Massa, Gabriel Synnaeve et al.

2020 19566 citations View Analysis →

Deep Learning Approaches to Grasp Synthesis: A Review

R. Newbury, Morris Gu, Lachlan Chumbley et al.

2022 291 citations View Analysis →

PoinTr: Diverse Point Cloud Completion with Geometry-Aware Transformers

Xumin Yu, Yongming Rao, Ziyi Wang et al.

2021 649 citations View Analysis →

Vector Neurons: A General Framework for SO(3)-Equivariant Networks

Congyue Deng, O. Litany, Yueqi Duan et al.

2021 444 citations View Analysis →

Grasp Pose Detection from a Single RGB Image

Hu Cheng, Yingying Wang, M. Meng

2021 13 citations

AnyGrasp: Robust and Efficient Grasp Perception in Spatial and Temporal Domains

Haoshu Fang, Chenxi Wang, Hongjie Fang et al.

2022 494 citations View Analysis →

U-Net: Convolutional Networks for Biomedical Image Segmentation

O. Ronneberger, P. Fischer, T. Brox

2015 100285 citations View Analysis →

Convolutional Occupancy Networks

Songyou Peng, M. Niemeyer, L. Mescheder et al.

2020 1147 citations View Analysis →

Constrained 6-DoF Grasp Generation on Complex Shapes for Improved Dual-Arm Manipulation

Gaurav Singh, Sanket Kalwar, Md Faizal Karim et al.

2024 16 citations View Analysis →