phamtrongthang commited on
Commit
f0147bf
·
verified ·
1 Parent(s): 69652f6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +89 -0
README.md ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - medical-imaging
4
+ - cardiac
5
+ - strain-analysis
6
+ - ultrasound
7
+ - synthetic
8
+ task_categories:
9
+ - other
10
+ pretty_name: "STRAUS - Synthetic Cardiac Strain Ultrasound"
11
+ size_categories:
12
+ - n<1K
13
+ ---
14
+
15
+ # STRAUS — Synthetic Cardiac Strain Ultrasound Dataset
16
+
17
+ ## Description
18
+
19
+ The STRAUS dataset provides **18 synthetic patients** across **6 cardiac
20
+ conditions** (3 patients each):
21
+
22
+ | Condition | Patients |
23
+ |-----------|----------|
24
+ | Healthy | patient01–03 |
25
+ | LBBB | patient04–06 |
26
+ | LCx | patient07–09 |
27
+ | LAD | patient10–12 |
28
+ | RCA | patient13–15 |
29
+ | RCA2 | patient16–18 |
30
+
31
+ Each patient folder contains multi-modal imaging data:
32
+
33
+ - **cine/** — cine MRI images and meshes
34
+ - **tag1/, tag2/, tag3/** — tagged MRI images and meshes
35
+ - **us/** — ultrasound images and meshes
36
+
37
+ Additionally, **reference meshes** and a resource archive are included.
38
+
39
+ ## File Structure
40
+
41
+ ```
42
+ patient01_healthy/
43
+ cine/
44
+ image/ (MHD + RAW files)
45
+ mesh/ (VTK files)
46
+ tag1/
47
+ image/
48
+ mesh/
49
+ tag2/
50
+ image/
51
+ mesh/
52
+ tag3/
53
+ image/
54
+ mesh/
55
+ us/
56
+ image/ (usfrm00.mhd, usfrm00.raw, ...)
57
+ mesh/ (VTK files)
58
+ ...
59
+ patient18_rca2/
60
+ ...
61
+ reference_mesh_1/
62
+ RefMeshP1.vtk
63
+ reference_mesh_2/
64
+ RefMeshP2.vtk
65
+ reference_mesh_3/
66
+ RefMeshP3.vtk
67
+ Resources (1).zip (~14 GB archive)
68
+ ```
69
+
70
+ ## Format
71
+
72
+ - **Image format**: MetaImage (`.mhd` + `.raw` pairs)
73
+ - **Mesh format**: VTK (`.vtk`)
74
+ - **Archive**: `Resources (1).zip` contains additional resources
75
+
76
+ ## Source
77
+
78
+ Original dataset page: <https://humanheart-project.creatis.insa-lyon.fr/multimodalityStraus.html>
79
+
80
+ ## Usage
81
+
82
+ ```python
83
+ import SimpleITK as sitk
84
+
85
+ # Read an ultrasound frame
86
+ img = sitk.ReadImage("patient01_healthy/us/image/usfrm00.mhd")
87
+ volume = sitk.GetArrayFromImage(img)
88
+ print(f"Shape: {volume.shape}, dtype: {volume.dtype}")
89
+ ```