This repository contains dataset toolkit for the paper "GraspClutter6D: A Large-scale Real-world Dataset for Robust Perception and Grasping in Cluttered Scenes." (RA-L 2025)
[ArXiv] [Website] [Dataset] [Video]
- Load and manipulate 6D grasp pose annotations
- Perform grasp evaluation for benchmarking
- Maintain compatibility with graspnetAPI from GraspNet-1B
The GraspClutter6D Dataset is available through Hugging Face
# Create and activate conda environment
conda create -n gc6d python=3.8
conda activate gc6d
# Clone repository and install in development mode
git clone https://github.com/SeungBack/graspclutter6dAPI.git
cd graspclutter6dAPI
pip install -e .pip install graspclutter6dAPIBefore running the examples, set the environment variable to point to your dataset location:
export GC6D_ROOT='/path/to/graspclutter6d'Check if the downloaded dataset is complete and properly structured:
python examples/exam_check_data.pyLoad and process grasp annotations from the GraspClutter6D dataset:
python examples/exam_loadGrasp.pyGenerate visualizations of grasp poses and objects:
python examples/exam_vis.pyThis repository is built upon the graspnetAPI. We thank the authors for sharing their code.
