GraspFactory Visualization Tools
October 1, 2025 ยท View on GitHub
This repository provides visualization tools for the GraspFactory dataset, a large-scale object-centric grasping dataset containing over 109 million 6-DoF grasps for robotic manipulation research.
๐ Table of Contents
- About GraspFactory Dataset
- Features
- Dataset Download
- Sample Data
- Installation
- Dataset Structure
- Usage
- Dataset Statistics
- Citation
- License
๐ About GraspFactory Dataset
GraspFactory is a comprehensive dataset designed for training data-intensive robotic grasping models. The dataset includes:
- 109+ million 6-DoF grasps across two popular gripper types
- Franka Panda gripper: 14,690 objects with corresponding grasps
- Robotiq 2F-85 gripper: 33,710 objects with corresponding grasps
- Geometrically diverse objects to enable generalization to novel objects
- Real-world validation in both simulated and physical environments
The dataset addresses the critical challenge of training robotic grasping models that can generalize to the vast diversity of objects encountered in industrial automation, warehouses, and manufacturing plants.
๐ Features
This visualization repository provides:
- 3D Grasp Visualization: Interactive 3D visualization of grasps on object meshes
- Multi-Gripper Support: Visualization for both Franka Panda and Robotiq 2F-85 grippers
๐ Dataset Download
๐ฅ Download Instructions (macOS/Linux)
chmod +x download_data.sh
./download_data.sh
๐ฆ Sample Data
This repository includes sample data to help you get started quickly with the visualization tools:
- Panda gripper samples: 5 objects with corresponding grasps and meshes
- Robotiq 2F-85 gripper samples: 5 objects with corresponding grasps and meshes
The sample data is located in the sample_data/ directory and follows the same structure as the full dataset:
sample_data/
โโโ panda/
โ โโโ grasps/ # 5 sample .npz grasp files
โ โโโ meshes/ # 5 corresponding .obj mesh files
โโโ robotiq_2f85/
โโโ grasps/ # 5 sample .npz grasp files
โโโ meshes/ # 5 corresponding .obj mesh files
You can use this sample data to:
- Test the visualization tools without downloading the full dataset
- Understand the data format and structure
- Develop and debug your own grasp analysis code
๐ ๏ธ Installation
- Clone this repository:
git clone https://github.com/AutodeskRoboticsLab/graspfactory.git
cd graspfactory
- Create a conda environment
conda create -n graspfactory python=3.11 -y && conda activate graspfactory
- Install the required dependencies:
pip install -r requirements.txt
๐ Dataset Structure
The GraspFactory dataset follows this structure:
GraspFactory/
โโโ Franka Panda/
โ โโโ grasps/
โ โ โโโ object_001.npz
โ โ โโโ object_002.npz
โ โ โโโ ...
โ โโโ meshes/
โ โโโ object_001.obj
โ โโโ object_002.obj
โ โโโ ...
โโโ Robotiq_2F85/
โโโ grasps/
โ โโโ object_001.npz
โ โโโ object_002.npz
โ โโโ ...
โโโ meshes/
โโโ object_001.obj
โโโ object_002.obj
โโโ ...
Each .npz file contains:
grasps: 6-DoF grasp poses as 4x4 transformation matricesgrasp_widths: Corresponding gripper opening widthssuccess_indices: Indices of successful graspsmesh_uid: Unique identifier linking to the corresponding mesh file
๐ฏ Usage
Batch Visualization Script
Run the provided visualization script with command line options:
# Visualize Robotiq grasps using sample data (default)
python visualize.py
# Visualize Panda grasps using sample data
python visualize.py --gripper panda
# Customize number of grasps shown
python visualize.py --gripper robotiq --num_grasps 10
# Use custom data path (for full dataset)
python visualize.py --data_path /path/to/custom/grasps --gripper panda
# Explicitly use sample data
python visualize.py --data_path sample_data/<gripper_name>/grasps --gripper robotiq
Available Arguments:
--gripper/-g: Choose gripper type ('panda' or 'robotiq', default: 'robotiq')--num_grasps/-n: Number of grasps to show per object (default: 25)--data_path/-p: Custom path to grasp data
The script will:
- Load grasp files from the specified dataset
- Display the specified number of random successful grasps per object
- Show interactive 3D visualization for each object
๐ BibTeX
If you use GraspFactory in your research, please cite our paper:
@article{srinivas2025graspfactory,
title={GraspFactory: A Large Object-Centric Grasping Dataset},
author={Srinivas, Srinidhi Kalgundi and Shukla, Yash and Arnold, Adam and Chitta, Sachin},
journal={arXiv preprint arXiv:2509.20550},
year={2025}
}
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.