harpreetsahota commited on
Commit
9d7bef7
·
verified ·
1 Parent(s): a58ad7f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -78
README.md CHANGED
@@ -11,18 +11,19 @@ tags:
11
  - fiftyone
12
  - group
13
  - object-detection
14
- dataset_summary: '
15
 
16
 
17
 
18
 
19
- This is a [FiftyOne](https://github.com/voxel51/fiftyone) dataset with 111 samples.
 
20
 
21
 
22
  ## Installation
23
 
24
 
25
- If you haven''t already, install FiftyOne:
26
 
27
 
28
  ```bash
@@ -44,7 +45,7 @@ dataset_summary: '
44
 
45
  # Load the dataset
46
 
47
- # Note: other available arguments include ''max_samples'', etc
48
 
49
  dataset = load_from_hub("Voxel51/graspclutter6d")
50
 
@@ -54,8 +55,7 @@ dataset_summary: '
54
  session = fo.launch_app(dataset)
55
 
56
  ```
57
-
58
- '
59
  ---
60
 
61
  # Dataset Card for graspclutter6d
@@ -80,30 +80,45 @@ pip install -U fiftyone
80
 
81
  ```python
82
  import fiftyone as fo
83
- from fiftyone.utils.huggingface import load_from_hub
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
 
85
- # Load the dataset
86
- # Note: other available arguments include 'max_samples', etc
87
- dataset = load_from_hub("Voxel51/graspclutter6d")
88
 
89
  # Launch the App
90
  session = fo.launch_app(dataset)
 
 
91
  ```
92
 
93
 
94
  ## Dataset Details
95
 
96
- ### Dataset Description
97
 
98
  GraspClutter6D is a large-scale real-world dataset for robust perception and grasping in cluttered scenes. This FiftyOne dataset contains a **curated subset** of 99 scenes from the full GraspClutter6D dataset, optimized for visualization and exploration.
99
 
100
- **Full Dataset Statistics** (original):
101
- - 1,000 highly cluttered scenes with 14.1 objects/scene (average)
102
- - 62.6% occlusion rate (percentage of instances with visibility ≤ 0.95)
103
- - 200 unique objects captured in bins, shelves, and tables
104
- - 52K RGB-D images from 4 cameras (RealSense D415, D435, Azure Kinect, Zivid)
105
- - 736K 6D object poses with segmentation masks
106
- - 9.3 billion 6-DoF grasp annotations
107
 
108
  **This Subset** (demo):
109
  - 99 scenes spanning the occlusion range (selected by visibility distribution)
@@ -113,8 +128,7 @@ GraspClutter6D is a large-scale real-world dataset for robust perception and gra
113
 
114
  - **Curated by:** Seunghyeok Back, Joosoon Lee, Kangmin Kim, Heeseon Rho, Geonhyup Lee, Raeyoung Kang, Sangbeom Lee, Sangjun Noh, Youngjin Lee, Taeyeop Lee, and Kyoobin Lee
115
  - **Funded by :** Korea Institute of Machinery & Materials (KIMM), Gwangju Institute of Science and Technology (GIST), Korea Advanced Institute of Science and Technology (KAIST)
116
- - **Language(s) (NLP):** N/A (computer vision dataset)
117
- - **License:**
118
 
119
  ### Dataset Sources
120
 
@@ -207,35 +221,6 @@ Each group has **5 slices**:
207
  - `rotation`: [0, 0, 0] (axis-aligned bounding boxes)
208
  - `obj_id`: Object type ID
209
 
210
- ### Data Files
211
-
212
- **Per Scene:**
213
- - `rgb/NNNNNN.png`: RGB images (8-bit PNG)
214
- - `depth/NNNNNN.png`: Depth maps (16-bit PNG, values × depth_scale_mm = mm)
215
- - `mask_visib/NNNNNN_IIIIII.png`: Instance segmentation masks
216
- - `scene_camera.json`: Camera intrinsics and extrinsics
217
- - `scene_gt.json`: 6D object poses (rotation matrix + translation in mm)
218
- - `scene_gt_info.json`: Bounding boxes and visibility metrics
219
-
220
- **Object Models:**
221
- - `models_eval/obj_NNNNNN.ply`: 3D meshes for 200 objects
222
-
223
- **Grasp Labels** (hero scene only):
224
- - `grasp_label/obj_NNNNNN_labels.npz`: Dense grasp annotations
225
- - `points`: (N, 3) contact points in object frame (meters)
226
- - `offsets`: (N, 300, 12, 4, 3) approach directions
227
- - `collision`: (N, 300, 12, 4) collision flags
228
- - `scores`: (N, 300, 12, 4) grasp quality scores [0-1]
229
-
230
- ### Subset Selection Criteria
231
-
232
- The 99 scenes were selected from 1,000 total scenes using a stratified sampling approach:
233
- 1. Scenes ranked by mean visibility (occlusion severity)
234
- 2. Divided into 3 buckets (high/medium/low occlusion)
235
- 3. 33 scenes selected from each bucket, evenly spaced by scene ID
236
- 4. Hero scene = most occluded scene with all 13 viewpoints retained
237
- 5. Other scenes limited to viewpoint 0 (4 camera views) to reduce size
238
-
239
  ## Dataset Creation
240
 
241
  ### Curation Rationale
@@ -311,34 +296,6 @@ Annotations were produced through:
311
  - Simulation-based grasp generation (GraspNet framework)
312
  - Quality validation by research team
313
 
314
- #### Personal and Sensitive Information
315
-
316
- This dataset contains only images of inanimate objects (household items, tools, containers, etc.) arranged in controlled laboratory settings. No personal, sensitive, or private information is present.
317
-
318
- ## Bias, Risks, and Limitations
319
-
320
- **Technical Limitations:**
321
- - **Subset size**: This demo contains only 99 of 1,000 scenes; not suitable for training large-scale models
322
- - **Grasp annotations**: Only available for hero scene (~14 objects); limited grasp diversity in subset
323
- - **Viewpoint coverage**: Most scenes have only 1 viewpoint (4 camera views); only hero scene has 13 viewpoints
324
- - **Object diversity**: 200 objects may not cover all real-world object categories
325
- - **Environment**: Captured in controlled laboratory settings; may not generalize to all real-world conditions
326
- - **Camera-specific**: Depth quality and characteristics vary significantly between cameras
327
-
328
- **Dataset Biases:**
329
- - Objects selected for robotic grasping research (household items, tools); not representative of all object types
330
- - Korean research lab environment and object selection
331
- - Scenes arranged intentionally for high occlusion; may not reflect natural object arrangements
332
-
333
- ### Recommendations
334
-
335
- - **For training**: Use the full GraspClutter6D dataset from HuggingFace (1,000 scenes)
336
- - **For exploration**: This subset is ideal for visualization, prototyping, and understanding dataset structure
337
- - **Multi-camera fusion**: Leverage all 4 cameras for robust perception; single-camera methods may struggle
338
- - **Depth preprocessing**: Account for camera-specific depth_scale_mm factors (1.0 for RealSense, 0.1 for Kinect/Zivid)
339
- - **Occlusion handling**: Test algorithms on scenes across all occlusion levels (check mean_visibility field)
340
- - **Evaluation**: When benchmarking, report performance separately for different occlusion ranges
341
-
342
  ## Citation
343
 
344
  **BibTeX:**
@@ -369,4 +326,4 @@ Original dataset by: Seunghyeok Back, Joosoon Lee, Kangmin Kim, Heeseon Rho, Geo
369
 
370
  ## Dataset Card Contact
371
 
372
- For questions about the full GraspClutter6D dataset: kyoobinlee@gist.ac.kr
 
11
  - fiftyone
12
  - group
13
  - object-detection
14
+ dataset_summary: >
15
 
16
 
17
 
18
 
19
+ This is a [FiftyOne](https://github.com/voxel51/fiftyone) dataset with 111
20
+ samples.
21
 
22
 
23
  ## Installation
24
 
25
 
26
+ If you haven't already, install FiftyOne:
27
 
28
 
29
  ```bash
 
45
 
46
  # Load the dataset
47
 
48
+ # Note: other available arguments include 'max_samples', etc
49
 
50
  dataset = load_from_hub("Voxel51/graspclutter6d")
51
 
 
55
  session = fo.launch_app(dataset)
56
 
57
  ```
58
+ license: cc-by-sa-4.0
 
59
  ---
60
 
61
  # Dataset Card for graspclutter6d
 
80
 
81
  ```python
82
  import fiftyone as fo
83
+ from huggingface_hub import snapshot_download
84
+
85
+
86
+ # Download the dataset snapshot to the current working directory
87
+
88
+ snapshot_download(
89
+ repo_id="Voxel51/graspclutter6d",
90
+ local_dir=".",
91
+ repo_type="dataset"
92
+ )
93
+
94
+
95
+
96
+ # Load dataset from current directory using FiftyOne's native format
97
+ dataset = fo.Dataset.from_dir(
98
+ dataset_dir=".", # Current directory contains the dataset files
99
+ dataset_type=fo.types.FiftyOneDataset, # Specify FiftyOne dataset format
100
+ name="graspclutter6d" # Assign a name to the dataset for identification
101
+ )
102
 
103
+ # Launch the App
104
+ session = fo.launch_app(dataset)
 
105
 
106
  # Launch the App
107
  session = fo.launch_app(dataset)
108
+
109
+
110
  ```
111
 
112
 
113
  ## Dataset Details
114
 
115
+ ![image/png](graspclutter6d.gif)
116
 
117
  GraspClutter6D is a large-scale real-world dataset for robust perception and grasping in cluttered scenes. This FiftyOne dataset contains a **curated subset** of 99 scenes from the full GraspClutter6D dataset, optimized for visualization and exploration.
118
 
119
+
120
+ ### Dataset Description
121
+
 
 
 
 
122
 
123
  **This Subset** (demo):
124
  - 99 scenes spanning the occlusion range (selected by visibility distribution)
 
128
 
129
  - **Curated by:** Seunghyeok Back, Joosoon Lee, Kangmin Kim, Heeseon Rho, Geonhyup Lee, Raeyoung Kang, Sangbeom Lee, Sangjun Noh, Youngjin Lee, Taeyeop Lee, and Kyoobin Lee
130
  - **Funded by :** Korea Institute of Machinery & Materials (KIMM), Gwangju Institute of Science and Technology (GIST), Korea Advanced Institute of Science and Technology (KAIST)
131
+ - **License:** Creative Commons Attribution Share Alike 4.0
 
132
 
133
  ### Dataset Sources
134
 
 
221
  - `rotation`: [0, 0, 0] (axis-aligned bounding boxes)
222
  - `obj_id`: Object type ID
223
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
  ## Dataset Creation
225
 
226
  ### Curation Rationale
 
296
  - Simulation-based grasp generation (GraspNet framework)
297
  - Quality validation by research team
298
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
299
  ## Citation
300
 
301
  **BibTeX:**
 
326
 
327
  ## Dataset Card Contact
328
 
329
+ For questions about the full GraspClutter6D dataset: kyoobinlee@gist.ac.kr