lw11 commited on
Commit
2fce050
·
verified ·
1 Parent(s): a44bbfa

card: 14-col schema + depth tar.gz docs

Browse files
Files changed (1) hide show
  1. README.md +17 -10
README.md CHANGED
@@ -25,12 +25,12 @@ configs:
25
 
26
  A 36,000-image dataset for **cable / wire instance segmentation**: physically simulated
27
  deformable linear objects (DLOs) rendered over diverse backgrounds, with exact per-instance
28
- masks. Single category: `cable`. Generated with **DeformX**.
29
 
30
- - **Images:** 36,000 (1024×1024 RGB)
31
  - **Instances:** 176,387 cable masks (COCO RLE)
32
  - **Categories:** 1 (`cable`)
33
- - **Modalities:** RGB, instance masks · per-image metric **depth** (forthcoming, see below)
34
 
35
  ## Scenes
36
 
@@ -40,15 +40,15 @@ masks. Single category: `cable`. Generated with **DeformX**.
40
  | `flying_wire` | 2 / 4 / 8 | 15,000 | suspended / catenary wires |
41
  | `wire_on_plane` | 2 / 4 / 8 | 15,000 | wires draped on a flat surface |
42
 
43
- Each `scene_family/<n>_cable` group is uniformly sampled; every image has ≥0.5% wire pixels.
44
-
45
  ## Files & layout
46
 
47
  | path | what |
48
  |---|---|
49
  | `data/*.parquet` (config `default`) | RGB image + per-instance COCO-RLE masks + metadata, one row per image |
50
  | `annotations.json` | full COCO ground truth (36,000 images / 176,387 annotations, single category `cable`) |
51
- | `depth/` | per-image metric depth, float32 `[1024, 1024]` **forthcoming** |
 
 
52
 
53
  ## Usage
54
 
@@ -64,14 +64,21 @@ masks = json.loads(ex["masks_rle"]) # list of {"size":[h,w], "counts": <RLE
64
  m0 = M.decode(masks[0]) # HxW uint8 instance mask
65
  ```
66
 
67
- The COCO `annotations.json` keys images by the same `file_name`.
 
 
 
 
 
 
 
68
 
69
  ## Data fields (Parquet `default`)
70
 
71
  `image` (RGB), `file_name`, `scene_family`, `n_cable`, `masks_rle`, `bboxes`, `areas`,
72
- `num_instances`, `wire_area_frac`, `bg_area_frac`, `det_f1_iou_50`, `det_f1_iou_75`,
73
- `det_map_50_95`, `jaccard_j`, `category`. Masks / bboxes / areas are JSON-encoded per-instance
74
- lists (RLE = COCO compressed). The dataset license (CC-BY-4.0) applies to all rows.
75
 
76
  ## Splits
77
 
 
25
 
26
  A 36,000-image dataset for **cable / wire instance segmentation**: physically simulated
27
  deformable linear objects (DLOs) rendered over diverse backgrounds, with exact per-instance
28
+ masks and per-image metric depth. Single category: `cable`. Generated with **DeformX**.
29
 
30
+ - **Images:** 36,000 (1024x1024 RGB)
31
  - **Instances:** 176,387 cable masks (COCO RLE)
32
  - **Categories:** 1 (`cable`)
33
+ - **Modalities:** RGB, instance masks, per-image metric depth
34
 
35
  ## Scenes
36
 
 
40
  | `flying_wire` | 2 / 4 / 8 | 15,000 | suspended / catenary wires |
41
  | `wire_on_plane` | 2 / 4 / 8 | 15,000 | wires draped on a flat surface |
42
 
 
 
43
  ## Files & layout
44
 
45
  | path | what |
46
  |---|---|
47
  | `data/*.parquet` (config `default`) | RGB image + per-instance COCO-RLE masks + metadata, one row per image |
48
  | `annotations.json` | full COCO ground truth (36,000 images / 176,387 annotations, single category `cable`) |
49
+ | `depth/*.tar.gz` | per-image metric depth, float32 `[1024,1024]` `.npy`, packed in 100 gzipped tar shards |
50
+
51
+ > The `image-only` branch holds the RGB+masks release without depth.
52
 
53
  ## Usage
54
 
 
64
  m0 = M.decode(masks[0]) # HxW uint8 instance mask
65
  ```
66
 
67
+ **Depth.** Download and extract the `depth/*.tar.gz` shards; each member is
68
+ `<scene_family>/<n>_cable/<id>.npy`. The depth for an image is the `.npy` at the same
69
+ relative path as its `file_name` (swap `.png` -> `.npy`):
70
+
71
+ ```python
72
+ import numpy as np
73
+ d = np.load(f"depth/{ex['file_name'][:-4]}.npy") # float32 [1024,1024], metric
74
+ ```
75
 
76
  ## Data fields (Parquet `default`)
77
 
78
  `image` (RGB), `file_name`, `scene_family`, `n_cable`, `masks_rle`, `bboxes`, `areas`,
79
+ `num_instances`, `wire_area_frac`, `det_f1_iou_50`, `det_f1_iou_75`, `det_map_50_95`,
80
+ `jaccard_j`, `category`. Masks / bboxes / areas are JSON-encoded per-instance lists
81
+ (RLE = COCO compressed).
82
 
83
  ## Splits
84