varora
commited on
Commit
·
d6660ca
1
Parent(s):
56661e2
update
Browse files
README.md
CHANGED
|
@@ -117,11 +117,12 @@ Each data instance (male/train/001.gz for example) contains the following:
|
|
| 117 |
{
|
| 118 |
'gender': str ['male', 'female'],
|
| 119 |
'subject_ID': str
|
| 120 |
-
'mri_seg': numpy.ndarray (192, 256
|
| 121 |
'mri_labels': dict {'NO': 0, 'LT': 1, 'AT': 2, 'VAT': 3, 'BONE': 4},
|
| 122 |
-
'
|
| 123 |
-
'
|
| 124 |
-
'
|
|
|
|
| 125 |
'smpl_dict': dict dict_keys(['gender', 'verts_free', 'verts', 'faces', 'pose', 'betas', 'trans'])
|
| 126 |
}
|
| 127 |
```
|
|
@@ -132,7 +133,8 @@ Each data instance (male/train/001.gz for example) contains the following fields
|
|
| 132 |
- 'subject_ID': "anonymized name of the subject which is also the filename"
|
| 133 |
- 'mri_seg': "annotated array with the labels 0,1,2,3",
|
| 134 |
- 'mri_labels': "dictionary of mapping between label integer and name",
|
| 135 |
-
- '
|
|
|
|
| 136 |
- 'resolution': "per slice resolution in meters",
|
| 137 |
- 'center': "per slice center, in pixels",
|
| 138 |
- 'smpl_dict': dictionary containing all the relevant SMPL parameters of the subject alongwith mesh faces and vertices ('verts': original fit, 'verts_free': compressed fit
|
|
|
|
| 117 |
{
|
| 118 |
'gender': str ['male', 'female'],
|
| 119 |
'subject_ID': str
|
| 120 |
+
'mri_seg': numpy.ndarray (None, 192, 256),
|
| 121 |
'mri_labels': dict {'NO': 0, 'LT': 1, 'AT': 2, 'VAT': 3, 'BONE': 4},
|
| 122 |
+
'body_mask': numpy.ndarray (None, 192, 256),
|
| 123 |
+
'bondy_cont_pc': numpy.ndarray (None, 3),
|
| 124 |
+
'resolution': numpy.ndarray (N, 3),
|
| 125 |
+
'center': numpy.ndarray (N, 3),
|
| 126 |
'smpl_dict': dict dict_keys(['gender', 'verts_free', 'verts', 'faces', 'pose', 'betas', 'trans'])
|
| 127 |
}
|
| 128 |
```
|
|
|
|
| 133 |
- 'subject_ID': "anonymized name of the subject which is also the filename"
|
| 134 |
- 'mri_seg': "annotated array with the labels 0,1,2,3",
|
| 135 |
- 'mri_labels': "dictionary of mapping between label integer and name",
|
| 136 |
+
- 'body_mask': "binary array for body mask",
|
| 137 |
+
- 'body_cont_pc' "extracted point cloud from mri contours"
|
| 138 |
- 'resolution': "per slice resolution in meters",
|
| 139 |
- 'center': "per slice center, in pixels",
|
| 140 |
- 'smpl_dict': dictionary containing all the relevant SMPL parameters of the subject alongwith mesh faces and vertices ('verts': original fit, 'verts_free': compressed fit
|