Koddenbrock commited on
Commit
65e514c
·
verified ·
1 Parent(s): 441a612

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +99 -22
README.md CHANGED
@@ -1,22 +1,99 @@
1
- ---
2
- license: cc-by-4.0
3
- dataset_info:
4
- features:
5
- - name: id
6
- dtype: string
7
- - name: image
8
- dtype: image
9
- - name: mask
10
- list: image
11
- splits:
12
- - name: train
13
- num_bytes: 29642168
14
- num_examples: 66
15
- download_size: 29211850
16
- dataset_size: 29642168
17
- configs:
18
- - config_name: default
19
- data_files:
20
- - split: train
21
- path: data/train-*
22
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ dataset_info:
4
+ features:
5
+ - name: id
6
+ dtype: string
7
+ - name: image
8
+ dtype: image
9
+ - name: mask
10
+ list: image
11
+ splits:
12
+ - name: train
13
+ num_bytes: 29642168
14
+ num_examples: 66
15
+ download_size: 29211850
16
+ dataset_size: 29642168
17
+ configs:
18
+ - config_name: default
19
+ data_files:
20
+ - split: train
21
+ path: data/train-*
22
+ ---
23
+
24
+ # HTW-KI-Werkstatt/IRM-in-vitro-microtubules
25
+
26
+ **Real IRM Images of In Vitro Microtubules**
27
+
28
+ This dataset contains real interference reflection microscopy (IRM) images of in vitro microtubules. It is provided in the exact same format as the [SynthMT synthetic dataset](https://huggingface.co/datasets/HTW-KI-Werkstatt/SynthMT), enabling seamless switching between real and synthetic data for benchmarking and model development.
29
+
30
+ - **Data type:** Real in vitro IRM images
31
+ - **Format:** Identical structure and field names as SynthMT
32
+ - **Use case:** Benchmarking segmentation models, domain adaptation, and biological analysis
33
+
34
+ ## Biological Context
35
+
36
+ Microtubules are cytoskeletal filaments essential for cell biology. IRM enables label-free imaging of microtubules in vitro, providing high-contrast images for quantitative analysis.
37
+
38
+ ## Dataset Structure
39
+
40
+ Each sample contains:
41
+
42
+ | Field | Type | Description |
43
+ |---------|--------|--------------------------------------------------|
44
+ | `id` | string | Unique image identifier |
45
+ | `image` | Image | Real IRM image (PNG, can be loaded as (H, W, 3)) |
46
+ | `mask` | Array3D| Instance masks, same as SynthMT (C, H, W) |
47
+
48
+ *The structure matches SynthMT, so you can switch the repo key in your code without changes.*
49
+
50
+ ## Usage Example
51
+
52
+ Install the Hugging Face `datasets` library:
53
+
54
+ ```bash
55
+ pip install datasets
56
+ ```
57
+
58
+ Load the dataset (just change the repo key from SynthMT):
59
+
60
+ ```python
61
+ from datasets import load_dataset
62
+ import numpy as np
63
+
64
+ ds = load_dataset("HTW-KI-Werkstatt/IRM-in-vitro-microtubules", split="train")
65
+
66
+ sample = ds[0]
67
+ img_array = np.array(sample["image"].convert("RGB"))
68
+ # If masks are present:
69
+ # mask_stack = np.stack([np.array(mask.convert("L")) for mask in sample["mask"]], axis=0)
70
+ ```
71
+
72
+ ## Related Resources
73
+
74
+ - **Synthetic Dataset (SynthMT):** https://huggingface.co/datasets/HTW-KI-Werkstatt/SynthMT
75
+ - **Project Page:** https://datexis.github.io/SynthMT-project-page/
76
+ - **Paper:** https://www.biorxiv.org/content/10.64898/2026.01.09.698597v2
77
+
78
+ ## License
79
+
80
+ CC-BY-4.0
81
+
82
+ ## Citation
83
+
84
+ If you use this dataset, please cite:
85
+
86
+ ```
87
+ @article{koddenbrock2026synthetic,
88
+ author = {Koddenbrock, Mario and Westerhoff, Justus and Fachet, Dominik and Reber, Simone and Gers, Felix A. and Rodner, Erik},
89
+ title = {Synthetic data enables human-grade microtubule analysis with foundation models for segmentation},
90
+ elocation-id = {2026.01.09.698597},
91
+ year = {2026},
92
+ doi = {10.64898/2026.01.09.698597},
93
+ publisher = {Cold Spring Harbor Laboratory},
94
+ URL = {https://www.biorxiv.org/content/early/2026/01/12/2026.01.09.698597},
95
+ eprint = {https://www.biorxiv.org/content/early/2026/01/12/2026.01.09.698597.full.pdf},
96
+ journal = {bioRxiv}
97
+ }
98
+ ```
99
+