Update README.md
Browse files
README.md
CHANGED
@@ -83,8 +83,8 @@ Individual files are organized hierarchically by surgery type, procedure, and ta
|
|
83 |
- Lists relationships (e.g., "holding") with their names and unique IDs.
|
84 |
- `sources/`
|
85 |
- `sources` (Dataset: `name`, `id`)
|
86 |
-
- Lists data sources (e.g., cameras like '
|
87 |
-
- **Note**: Camera IDs in `eye_gaze/coordinates`
|
88 |
- `dataset/`
|
89 |
- Attributes: `version`, `creation_date`, `title`
|
90 |
- Provides dataset-level information, such as version number, creation date, and title.
|
@@ -98,23 +98,23 @@ Individual files are organized hierarchically by surgery type, procedure, and ta
|
|
98 |
- Directory for a specific recording (subclip) of a procedure.
|
99 |
- **`sources/`**
|
100 |
- Attributes: `source_count` (int), `source_0` (e.g., 'head_surgeon'), `source_1`, ...
|
101 |
-
- Metadata for
|
102 |
-
- **Note**: Source names are in the same order as in `metadata/sources`, but for camera ID mapping (in gaze), use `metadata/sources` to get accurate source names.
|
103 |
- **`frames/`**
|
104 |
- `rgb` (Dataset: `[num_frames, num_cameras, height, width, 3]`, `uint8`)
|
105 |
- Synchronized video frames with dimensions: number of frames, number of cameras, height, width, and 3 color channels.
|
106 |
- **`eye_gaze/`**
|
107 |
-
- `coordinates` (Dataset: `[num_frames,
|
108 |
-
- Eye gaze data from
|
109 |
- Invalid gaze points are marked as `[-1., -1.]`.
|
110 |
- **Note**: The `camera_id` in the last dimension must be mapped to `metadata/sources` for the correct source name, not to `takes/<take_id>/sources/`.
|
111 |
- **`eye_gaze_depth/`**
|
112 |
-
- `values` (Dataset: `[num_frames,
|
113 |
-
- Depth values for eye gaze in meters, synchronized with `eye_gaze/coordinates` (can use camera ID from `coordinates`).
|
114 |
- Defaults to 1.0 if depth data is unavailable.
|
115 |
- **`hand_tracking/`**
|
116 |
-
- `positions` (Dataset: `[num_frames,
|
117 |
-
- Hand tracking data from
|
118 |
- Invalid points are marked with `NaN`.
|
119 |
- **`audio/`** (Optional)
|
120 |
- `waveform` (Dataset: `[num_samples, 2]`, `float32`)
|
|
|
83 |
- Lists relationships (e.g., "holding") with their names and unique IDs.
|
84 |
- `sources/`
|
85 |
- `sources` (Dataset: `name`, `id`)
|
86 |
+
- Lists data sources (e.g., cameras like 'assistant', 'ultrasound', 'external') with their names and unique IDs.
|
87 |
+
- **Note**: Camera IDs in `eye_gaze/coordinates` are mapped to this `sources` dataset for accurate source names. Do not use `takes/<take_id>/sources/` for mapping camera IDs to get the source names, though the source names are listed in the same order.
|
88 |
- `dataset/`
|
89 |
- Attributes: `version`, `creation_date`, `title`
|
90 |
- Provides dataset-level information, such as version number, creation date, and title.
|
|
|
98 |
- Directory for a specific recording (subclip) of a procedure.
|
99 |
- **`sources/`**
|
100 |
- Attributes: `source_count` (int), `source_0` (e.g., 'head_surgeon'), `source_1`, ...
|
101 |
+
- Metadata for take cameras/sources, mapping array indices to camera/source IDs.
|
102 |
+
- **Note**: Source names are in the same order as in `metadata/sources`, but for camera/source ID mapping (in gaze), use `metadata/sources` to get accurate source names.
|
103 |
- **`frames/`**
|
104 |
- `rgb` (Dataset: `[num_frames, num_cameras, height, width, 3]`, `uint8`)
|
105 |
- Synchronized video frames with dimensions: number of frames, number of cameras, height, width, and 3 color channels.
|
106 |
- **`eye_gaze/`**
|
107 |
+
- `coordinates` (Dataset: `[num_frames, num_ego_cameras, 3]`, `float32`)
|
108 |
+
- Eye gaze data from Egocentric devices with dimensions: number of frames, number of ego cameras, and 3 values (camera/source ID, x-coordinate, y-coordinate).
|
109 |
- Invalid gaze points are marked as `[-1., -1.]`.
|
110 |
- **Note**: The `camera_id` in the last dimension must be mapped to `metadata/sources` for the correct source name, not to `takes/<take_id>/sources/`.
|
111 |
- **`eye_gaze_depth/`**
|
112 |
+
- `values` (Dataset: `[num_frames, num_ego_cameras]`, `float32`)
|
113 |
+
- Depth values for eye gaze in meters, synchronized with `eye_gaze/coordinates` (can use camera/source ID from `coordinates`).
|
114 |
- Defaults to 1.0 if depth data is unavailable.
|
115 |
- **`hand_tracking/`**
|
116 |
+
- `positions` (Dataset: `[num_frames, num_ego_cameras, 17]`, `float32`)
|
117 |
+
- Hand tracking data from egocentric devices with dimensions: number of frames, number of ego cameras, and 17 values (camera ID + 8 keypoints for left hand + 8 keypoints for right hand, including wrist, palm, and normals).
|
118 |
- Invalid points are marked with `NaN`.
|
119 |
- **`audio/`** (Optional)
|
120 |
- `waveform` (Dataset: `[num_samples, 2]`, `float32`)
|