CoolFace
Datasetpublic

jack635/grasp-dataset-curated

πŸ–οΈ Synthetic Grasp Dataset (Objaverse-LVIS Curated) This dataset contains high-quality synthetic grasp data generated for robotic manipulation research. It focuses on the fusion of vision and tactile sensing by providing visibility and occlusion analysis for each contact point. πŸ“Š Dataset Statistics Number of objects: 10 Source: Curated objects from Objaverse-LVIS (categories: cup, bottle, hammer, screwdriver, wrench) Grasp Strategies: front_back Camera… See the full description on the dataset page: https://huggingface.co/datasets/jack635/grasp-dataset-curated.

sourceHugging Facemitupdated 5mo agoView on Hugging Face
0likes624downloads
Dataset Card

πŸ–οΈ Synthetic Grasp Dataset (Objaverse-LVIS Curated)

This dataset contains high-quality synthetic grasp data generated for robotic manipulation research. It focuses on the fusion of vision and tactile sensing by providing visibility and occlusion analysis for each contact point.

πŸ“Š Dataset Statistics

  • β€”Number of objects: 10
  • β€”Source: Curated objects from Objaverse-LVIS (categories: cup, bottle, hammer, screwdriver, wrench)
  • β€”Grasp Strategies: front_back
  • β€”Camera Resolution: 640x480

πŸ› οΈ Data Format

Each object folder contains:

  • β€”rgb.png: Monocular RGB render.
  • β€”grasp_<strategy>.json: Contact points with position, normal, tangent, and visibility status.
  • β€”grasp_<strategy>.npz: NumPy version of the contact points.
  • β€”grasp_<strategy>_overlay.png: Visual overlay of the grasp on the object.
  • β€”metadata.json: Object-specific metadata (surface visibility, bounding box, complexity).

πŸ” Visibility Classification

Every contact point is classified based on camera occlusion:

  • β€”VISIBLE: Point is directly seen by the camera.
  • β€”SILHOUETTE: Point is on the visual horizon (critical for tactile ΨͺΪ©Ω…ΫŒΩ„).
  • β€”OCCLUDED: Point is hidden by the object itself (back side or self-occlusion).

πŸ“œ How to use

This dataset is designed to train models that predict contact stability from visual data or to simulate-to-real transfer for tactile controllers.

python
from huggingface_hub import snapshot_download
path = snapshot_download("jack635/grasp-dataset-curated", repo_type="dataset")

Generated using the [Grasp Dataset Generator](https://github.com/635jack/grasp-dataset-gen) pipeline.