File size: 1,849 Bytes
f0147bf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
tags:
  - medical-imaging
  - cardiac
  - strain-analysis
  - ultrasound
  - synthetic
task_categories:
  - other
pretty_name: "STRAUS - Synthetic Cardiac Strain Ultrasound"
size_categories:
  - n<1K
---

# STRAUS — Synthetic Cardiac Strain Ultrasound Dataset

## Description

The STRAUS dataset provides **18 synthetic patients** across **6 cardiac
conditions** (3 patients each):

| Condition | Patients |
|-----------|----------|
| Healthy   | patient01–03 |
| LBBB      | patient04–06 |
| LCx       | patient07–09 |
| LAD       | patient10–12 |
| RCA       | patient13–15 |
| RCA2      | patient16–18 |

Each patient folder contains multi-modal imaging data:

- **cine/** — cine MRI images and meshes
- **tag1/, tag2/, tag3/** — tagged MRI images and meshes
- **us/** — ultrasound images and meshes

Additionally, **reference meshes** and a resource archive are included.

## File Structure

```
patient01_healthy/
  cine/
    image/    (MHD + RAW files)
    mesh/     (VTK files)
  tag1/
    image/
    mesh/
  tag2/
    image/
    mesh/
  tag3/
    image/
    mesh/
  us/
    image/    (usfrm00.mhd, usfrm00.raw, ...)
    mesh/     (VTK files)
...
patient18_rca2/
  ...
reference_mesh_1/
  RefMeshP1.vtk
reference_mesh_2/
  RefMeshP2.vtk
reference_mesh_3/
  RefMeshP3.vtk
Resources (1).zip   (~14 GB archive)
```

## Format

- **Image format**: MetaImage (`.mhd` + `.raw` pairs)
- **Mesh format**: VTK (`.vtk`)
- **Archive**: `Resources (1).zip` contains additional resources

## Source

Original dataset page: <https://humanheart-project.creatis.insa-lyon.fr/multimodalityStraus.html>

## Usage

```python
import SimpleITK as sitk

# Read an ultrasound frame
img = sitk.ReadImage("patient01_healthy/us/image/usfrm00.mhd")
volume = sitk.GetArrayFromImage(img)
print(f"Shape: {volume.shape}, dtype: {volume.dtype}")
```