Angelou0516 commited on
Commit
8a8a5d0
·
verified ·
1 Parent(s): deb8ebc

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
+ license: cc-by-4.0
3
+ task_categories:
4
+ - image-segmentation
5
+ task_ids:
6
+ - instance-segmentation
7
+ - semantic-segmentation
8
+ language:
9
+ - en
10
+ tags:
11
+ - medical-imaging
12
+ - electron-microscopy
13
+ - nuclei-segmentation
14
+ - 3d-segmentation
15
+ - zebrafish
16
+ - neuroscience
17
+ pretty_name: NucMM-Z (Neuronal Nuclei from Zebrafish)
18
+ size_categories:
19
+ - 1K<n<10K
20
+ ---
21
+
22
+ # NucMM-Z Dataset
23
+
24
+ ## Overview
25
+
26
+ **NucMM-Z** (Neuronal Nuclei from Zebrafish) is a 3D electron microscopy (EM) dataset for nuclei instance segmentation from zebrafish brain tissue.
27
+
28
+ | Property | Value |
29
+ |----------|-------|
30
+ | **Modality** | Electron Microscopy (EM) |
31
+ | **Task** | Nuclei instance segmentation |
32
+ | **Anatomy** | Zebrafish brain |
33
+ | **Volume Size** | 64 × 64 × 64 voxels per patch |
34
+ | **Train Volumes** | 27 |
35
+ | **Val Volumes** | 27 |
36
+ | **Total Size** | ~1.09 GB |
37
+
38
+ ## Dataset Structure
39
+
40
+ ```
41
+ NucMM-Z/
42
+ ├── image.tif # Full raw volume (~1 GB)
43
+ ├── mask.h5 # Full annotation volume
44
+ ├── README.txt # Original readme
45
+ ├── Image/
46
+ │ ├── train/ # 27 training patches (.h5)
47
+ │ └── val/ # 27 validation patches (.h5)
48
+ └── Label/
49
+ ├── train/ # 27 training labels (.h5)
50
+ └── val/ # 27 validation labels (.h5)
51
+ ```
52
+
53
+ ## Label Format
54
+
55
+ - **Instance Segmentation**: Each nucleus has a unique integer ID
56
+ - Background: 0
57
+ - Typical density: 50-300 nuclei per 64×64×64 volume
58
+
59
+ ## Usage with EasyMedSeg
60
+
61
+ ```python
62
+ from dataloader import NucMMZImageDataset, NucMMZVideoDataset
63
+
64
+ # Image mode (2D slices) - Recommended
65
+ dataset = NucMMZImageDataset(split='train')
66
+ sample = dataset[0] # Returns dict with 'image' and 'mask'
67
+
68
+ # Video mode (3D volumes as frame sequences)
69
+ dataset = NucMMZVideoDataset(split='train')
70
+ video = dataset[0] # Returns dict with 'frames' and 'masks'
71
+ ```
72
+
73
+ ## Benchmark Results (SAM2)
74
+
75
+ | Mode | Model | Mean Dice | Mean IoU |
76
+ |------|-------|-----------|----------|
77
+ | **Image** | sam2_hiera_large | **0.3438** | 0.2566 |
78
+ | Video | sam2_video_hiera_large | 0.0631 | 0.0425 |
79
+
80
+ **Recommendation**: Use image mode for this dataset.
81
+
82
+ ## Source
83
+
84
+ - **Original**: [PyTorch Connectomics NucMM](https://connectomics-bazaar.github.io/proj/NucMM/index.html)
85
+ - **Paper**: Wei et al., MICCAI 2020
86
+
87
+ ## License
88
+
89
+ CC BY 4.0