varora commited on
Commit
495b025
1 Parent(s): 32db1d1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +215 -0
README.md CHANGED
@@ -2,4 +2,219 @@
2
  license: other
3
  license_name: max-planck
4
  license_link: https://hit.is.tue.mpg.de/license.html
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: other
3
  license_name: max-planck
4
  license_link: https://hit.is.tue.mpg.de/license.html
5
+ configs:
6
+ - config_name: male
7
+ data_files:
8
+ - split: train
9
+ path: male/train/*.gz
10
+ - split: val
11
+ path: male/val/*.gz
12
+ - split: test
13
+ path: male/test/*.gz
14
+ - config_name: female
15
+ data_files:
16
+ - split: train
17
+ path: female/train/*.gz
18
+ - split: val
19
+ path: female/val/*.gz
20
+ - split: test
21
+ path: female/test/*.gz
22
+ tags:
23
+ - SMPL
24
+ - Tissues
25
+ - Medical
26
+ - Biomechanics
27
+ - Human-Twins
28
+ - Digital-Twins
29
+ - Mesh
30
+ - Bones
31
+ - 3D
32
+ - Classification
33
+ - Occupancy
34
+ - MRI
35
+ - Segmentation
36
  ---
37
+
38
+ ## Dataset Description
39
+
40
+ - **Homepage:** [https://hit.is.tue.mpg.de/](https://hit.is.tue.mpg.de/)
41
+ - **Repository:** [https://github.com/MarilynKeller/HIT](https://github.com/MarilynKeller/HIT)
42
+ - **Paper:** [If the dataset was introduced by a paper or there was a paper written describing the dataset, add URL here (landing page for Arxiv paper preferred)]()
43
+ - **Point of Contact:** [Vaibhav Arora](vaibhav.arora@inria.fr), [Marilyn Keller](marilyn.keller@tuebingen.mpg.de), [Sergi Pujades](sergi.pujades-rocamora@inria.fr)
44
+
45
+ ### Dataset Summary
46
+ The HIT dataset is a structured dataset of paired observations of body's inner tissues and the body surface. More concretely, it is a dataset of paired full-body volumetric segmented (bones, lean, and adipose tissue) MRI scans and SMPL meshes capturing the body surface shape for male (N=157) and female (N=241) subjects respectively. This is relevant for medicine, sports science, biomechanics, and computer graphics as it can ease the creation of personalized anatomic digital twins that model our bones, lean, and adipose tissue.
47
+ Dataset acquistion: We work with scans acquired with a 1.5 T scanner (Magnetom Sonata, Siemens Healthcare) following a standardized protocol for whole body adipose tissue topography mapping. All subjects gave prior informed written consent and the study was approved by the local ethics board. Each scan has around 110 slices, slightly varying depending on the height of the subject. The slice resolution is 256 × 192, with an approximate voxel size of 2 × 2 × 10 mm. These slices are segmented into bones, lean, and adipose tissue by leveraging initial automatic segmentations and manual annotations to train and refine nnUnets with the help of human supervision. For each subject, we then fit the SMPL body mesh to the surface of the segmented MRI in a manner that captures the flattened shape of subjects in their lying positions on belly in the scanner (refer to Sec 3.2 in main paper for further details). Therefore for each subject, we provide the MRI segmented array and the SMPL mesh faces and vertices (in addition to the SMPL parameters).
48
+
49
+ [IMAGE]
50
+
51
+ ### Supported Tasks and Leaderboards
52
+ HIT fosters a new direction and therefore there aren't any exisiting Benchmarks. We encourage the use of the dataset to open up new tasks and research directions.
53
+
54
+ ### Languages
55
+ [N/A]
56
+
57
+ ## Dataset Structure
58
+ The dataset is structured as follows:
59
+ ```
60
+ |- male
61
+ |- train
62
+ |- 001.gz
63
+ |- 002.gz
64
+ |- …
65
+ |- 00X.gz
66
+ |- val
67
+ |-
68
+ |- …
69
+ |- 00X.gz
70
+ |- test
71
+ |-
72
+ |- …
73
+ |- 00X.gz
74
+ |- female
75
+ |- train
76
+ |- 001.gz
77
+ |- 002.gz
78
+ |- …
79
+ |- 00X.gz
80
+ |- val
81
+ |-
82
+ |- …
83
+ |- 00X.gz
84
+ |- test
85
+ |-
86
+ |- …
87
+ |- 00X.gz
88
+
89
+ ```
90
+
91
+ ### Data Instances
92
+ Each data instance (male/train/001.gz for example) contains the following:
93
+ ```
94
+ {
95
+ 'gender': str ['male', 'female'],
96
+ 'mri_seg': numpy.ndarray (192, 256, 110),
97
+ 'mri_labels': dict {'NO': 0, 'LT': 1, 'AT': 2, 'VAT': 3, 'BONE': 4},
98
+ 'mri_seg_dict': dict dict_keys(['LT', 'AT', 'VAT', 'BODY', 'BONE', 'NO']),
99
+ 'resolution': numpy.ndarray (110, 3),
100
+ 'center': numpy.ndarray (110, 3),
101
+ 'smpl_dict': dict dict_keys(['gender', 'verts_free', 'verts', 'faces', 'pose', 'betas', 'trans'])
102
+ }
103
+ ```
104
+
105
+ ### Data Fields
106
+ Each data instance (male/train/001.gz for example) contains the following fields:
107
+ - 'gender': "gender of the subject",
108
+ - 'mri_seg': "annotated array with the labels 0,1,2,3",
109
+ - 'mri_labels': "dictionary of mapping between label integer and name",
110
+ - 'mri_seg_dict': "a dictionary of individual masks of the different tissues (LT, AT, BT, ...)",
111
+ - 'resolution': "per slice resolution in meters",
112
+ - 'center': "per slice center, in pixels",
113
+ - 'smpl_dict': dictionary containing all the relevant SMPL parameters of the subject alongwith mesh faces and vertices ('verts': original fit, 'verts_free': compressed fit
114
+
115
+
116
+ ### Data Splits
117
+
118
+ The HIT dataset has 3 splits for each subject type (male, female): train, val, and test.
119
+ | | train | validation | test |
120
+ |-------------------------|------:|-----------:|-----:|
121
+ | male | 126 | 16 | 15 |
122
+ | female | 191 | 25 | 25 |
123
+
124
+
125
+ ## Dataset Creation
126
+ ### Curation Rationale
127
+ The dataset was created to foster research in biomechanics, computer graphics and Human Digital Twins.
128
+
129
+ ### Source Data
130
+ #### Initial Data Collection and Normalization
131
+ We work with scans acquired with a 1.5 T scanner (Magnetom Sonata, Siemens Healthcare) following a standardized protocol for whole body adipose tissue topography mapping. All subjects gave prior informed written consent and the study was approved by the local ethics board. Each scan has around 110 slices, slightly varying depending on the height of the subject. The slice resolution is 256 × 192, with an approximate voxel size of 2 × 2 × 10 mm. These slices are segmented into bones, lean, and adipose tissue by leveraging initial automatic segmentations and manual annotations to train and refine nnUnets with the help of human supervision. For each subject, we then fit the SMPL body mesh to the surface of the segmented MRI in a manner that captures the flattened shape of subjects in their lying positions on belly in the scanner (refer to Sec 3.2 in main paper for further details). Therefore for each subject, we provide the MRI segmented array and the SMPL mesh faces and vertices (in addition to the SMPL parameters).
132
+
133
+ #### Who are the source language producers?
134
+ [N/A]
135
+
136
+
137
+ ### Annotations
138
+ #### Annotation process
139
+ Refer to Sec 3 of the paper.
140
+
141
+ #### Who are the annotators?
142
+ Refer to Sec 3 of the paper.
143
+
144
+ ### Personal and Sensitive Information
145
+ The dataset uses identity category of gender: male and female. As the dataset intends to foster research in estimating tissues from outer shape which vary subsequently between the genders, the dataset is categorized as such.
146
+
147
+ ## Considerations for Using the Data
148
+
149
+ ### Social Impact of Dataset
150
+ Today, many methods can estimate accurate SMPL bodies from images, and this dataset can be used to train models that can infer their internal tissues. As a good estimate of the body composition relates to health risks, HIT dataset could allow the estimation of health risks from a single image of a person. This is valuable as an early diagnostic tool when used with the persons knowledge, but could turn into a risk if it is used without consent.
151
+
152
+ ### Discussion of Biases
153
+ [N/A]
154
+
155
+ ### Other Known Limitations
156
+ Refer to Sec 3.3 of the paper
157
+
158
+ ## Additional Information
159
+
160
+ ### Dataset Curators
161
+ The HIT dataset was curated by [Vaibhav Arora](vaibhav.arora@inria.fr), Abdelmouttaleb Dakri, Jürgen Machann, Sergi Pujades
162
+
163
+ ### Licensing Information
164
+ ##### Software Copyright License for non-commercial scientific research purposes
165
+ Please read carefully the following terms and conditions and any accompanying documentation before you download and/or use the HIT data and software, (the "Data & Software"), including trained models, 3D meshes, images, videos, textures, software, scripts, and animations. By downloading and/or using the Data & Software (including downloading, cloning, installing, and any other use of the corresponding github repository), you acknowledge that you have read these terms and conditions, understand them, and agree to be bound by them. If you do not agree with these terms and conditions, you must not download and/or use the Data & Software. Any infringement of the terms of this agreement will automatically terminate your rights under this License.
166
+
167
+ ##### Ownership/Licensees
168
+ The Software and the associated materials has been developed at the Max Planck Institute for Intelligent Systems (hereinafter "MPI"), University of Tübingen, and INRIA. The original skeleton mesh is released with permission of Anatoscope (www.anatoscope.com).
169
+ Any copyright or patent right is owned by and proprietary material of the Max-Planck-Gesellschaft zur Förderung der Wissenschaften e.V. (hereinafter “MPG”; MPI and MPG hereinafter collectively “Max-Planck”), hereinafter the “Licensor”.
170
+
171
+ ##### License Grant
172
+ Licensor grants you (Licensee) personally a single-user, non-exclusive, non-transferable, free of charge right:
173
+ - To install the Data & Software on computers owned, leased or otherwise controlled by you and/or your organization;
174
+ - To use the Data & Software for the sole purpose of performing non-commercial scientific research, non-commercial education, or non-commercial artistic projects;
175
+
176
+ Any other use, in particular any use for commercial, pornographic, military, or surveillance, purposes is prohibited. This includes, without limitation, incorporation in a commercial product, use in a commercial service, or production of other artefacts for commercial purposes. The Data & Software may not be used to create fake, libelous, misleading, or defamatory content of any kind excluding analyses in peer-reviewed scientific research. The Software may not be reproduced, modified and/or made available in any form to any third party without Max-Planck’s prior written permission.
177
+
178
+ The Data & Software may not be used for pornographic purposes or to generate pornographic material whether commercial or not. This license also prohibits the use of the Software to train methods/algorithms/neural networks/etc. for commercial, pornographic, military, surveillance, or defamatory use of any kind. By downloading the Data & Software, you agree not to reverse engineer it.
179
+
180
+ ##### No Distribution
181
+ The Data & Software and the license herein granted shall not be copied, shared, distributed, re-sold, offered for re-sale, transferred or sub-licensed in whole or in part except that you may make one copy for archive purposes only.
182
+
183
+ ##### Disclaimer of Representations and Warranties
184
+ You expressly acknowledge and agree that the Data & Software results from basic research, is provided “AS IS”, may contain errors, and that any use of the Data & Software is at your sole risk. LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE DATA & SOFTWARE, NEITHER EXPRESS NOR IMPLIED, AND THE ABSENCE OF ANY LEGAL OR ACTUAL DEFECTS, WHETHER DISCOVERABLE OR NOT. Specifically, and not to limit the foregoing, licensor makes no representations or warranties (i) regarding the merchantability or fitness for a particular purpose of the Data & Software, (ii) that the use of the Data & Software will not infringe any patents, copyrights or other intellectual property rights of a third party, and (iii) that the use of the Data & Software will not cause any damage of any kind to you or a third party.
185
+
186
+ ##### Limitation of Liability
187
+ Because this Data & Software License Agreement qualifies as a donation, according to Section 521 of the German Civil Code (Bürgerliches Gesetzbuch – BGB) Licensor as a donor is liable for intent and gross negligence only. If the Licensor fraudulently conceals a legal or material defect, they are obliged to compensate the Licensee for the resulting damage.
188
+ Licensor shall be liable for loss of data only up to the amount of typical recovery costs which would have arisen had proper and regular data backup measures been taken. For the avoidance of doubt Licensor shall be liable in accordance with the German Product Liability Act in the event of product liability. The foregoing applies also to Licensor’s legal representatives or assistants in performance. Any further liability shall be excluded.
189
+ Patent claims generated through the usage of the Data & Software cannot be directed towards the copyright holders.
190
+ The Data & Software is provided in the state of development the licensor defines. If modified or extended by Licensee, the Licensor makes no claims about the fitness of the Data & Software and is not responsible for any problems such modifications cause.
191
+
192
+ ##### No Maintenance Services
193
+
194
+ You understand and agree that Licensor is under no obligation to provide either maintenance services, update services, notices of latent defects, or corrections of defects with regard to the Data & Software. Licensor nevertheless reserves the right to update, modify, or discontinue the Data & Software at any time.
195
+
196
+ Defects of the Data & Software must be notified in writing to the Licensor with a comprehensible description of the error symptoms. The notification of the defect should enable the reproduction of the error. The Licensee is encouraged to communicate any use, results, modification or publication.
197
+
198
+ ##### Publications using the Data & Software
199
+
200
+ You acknowledge that the Data & Software is a valuable scientific resource and agree to appropriately reference the following paper in any publication making use of the Data & Software.
201
+
202
+ ##### Commercial licensing opportunities
203
+
204
+ For commercial uses of the Data & Software, please send email to ps-license@tue.mpg.de
205
+
206
+ This Agreement shall be governed by the laws of the Federal Republic of Germany except for the UN Sales Convention.
207
+
208
+
209
+ ### Citation Information
210
+ @inproceedings{Keller:CVPR:2024,
211
+ title = {{HIT}: Estimating Internal Human Implicit Tissues from the Body Surface},
212
+ author = {Keller, Marilyn and Arora, Vaibhav and Dakri, Abdelmouttaleb and Chandhok, Shivam and
213
+ Machann, Jürgen and Fritsche, Andreas and Black, Michael J. and Pujades, Sergi},
214
+ booktitle = {Proceedings IEEE/CVF Conf.~on Computer Vision and Pattern Recognition (CVPR)},
215
+ month = jun,
216
+ year = {2024},
217
+ month_numeric = {6}}
218
+
219
+ ### Contributions
220
+ [N/A]