Datasets:
id stringlengths 7 9 | image imagewidth (px) 256 256 | mask imagewidth (px) 256 256 | num_nuclei int32 0 69 |
|---|---|---|---|
ROI_100_1 | 0 | ||
ROI_100_2 | 0 | ||
ROI_101_1 | 8 | ||
ROI_101_2 | 11 | ||
ROI_102_1 | 69 | ||
ROI_102_2 | 56 | ||
ROI_103_1 | 8 | ||
ROI_103_2 | 10 | ||
ROI_104_1 | 4 | ||
ROI_104_2 | 3 | ||
ROI_105_1 | 0 | ||
ROI_105_2 | 0 | ||
ROI_106_1 | 0 | ||
ROI_106_2 | 0 | ||
ROI_107_1 | 0 | ||
ROI_107_2 | 0 | ||
ROI_108_1 | 63 | ||
ROI_108_2 | 35 | ||
ROI_109_1 | 10 | ||
ROI_109_2 | 0 | ||
ROI_10_1 | 26 | ||
ROI_10_2 | 21 | ||
ROI_110_1 | 35 | ||
ROI_110_2 | 42 | ||
ROI_111_1 | 17 | ||
ROI_111_2 | 12 | ||
ROI_112_1 | 7 | ||
ROI_112_2 | 5 | ||
ROI_113_1 | 26 | ||
ROI_113_2 | 7 | ||
ROI_114_1 | 0 | ||
ROI_114_2 | 0 | ||
ROI_115_1 | 0 | ||
ROI_115_2 | 0 | ||
ROI_116_1 | 0 | ||
ROI_116_2 | 0 | ||
ROI_117_1 | 0 | ||
ROI_117_2 | 0 | ||
ROI_118_1 | 0 | ||
ROI_118_2 | 0 | ||
ROI_119_1 | 2 | ||
ROI_119_2 | 2 | ||
ROI_11_1 | 29 | ||
ROI_11_2 | 31 | ||
ROI_120_1 | 4 | ||
ROI_120_2 | 2 | ||
ROI_121_1 | 0 | ||
ROI_121_2 | 0 | ||
ROI_122_1 | 0 | ||
ROI_122_2 | 0 | ||
ROI_123_1 | 0 | ||
ROI_123_2 | 0 | ||
ROI_124_1 | 11 | ||
ROI_124_2 | 18 | ||
ROI_125_1 | 2 | ||
ROI_125_2 | 2 | ||
ROI_126_1 | 13 | ||
ROI_126_2 | 14 | ||
ROI_127_1 | 15 | ||
ROI_127_2 | 15 | ||
ROI_128_1 | 9 | ||
ROI_128_2 | 5 | ||
ROI_129_1 | 5 | ||
ROI_129_2 | 8 | ||
ROI_12_1 | 0 | ||
ROI_12_2 | 2 | ||
ROI_130_1 | 5 | ||
ROI_130_2 | 5 | ||
ROI_131_1 | 16 | ||
ROI_131_2 | 13 | ||
ROI_132_1 | 0 | ||
ROI_132_2 | 0 | ||
ROI_133_1 | 0 | ||
ROI_133_2 | 0 | ||
ROI_134_1 | 0 | ||
ROI_134_2 | 0 | ||
ROI_135_1 | 4 | ||
ROI_135_2 | 0 | ||
ROI_136_1 | 3 | ||
ROI_136_2 | 0 | ||
ROI_137_1 | 0 | ||
ROI_137_2 | 0 | ||
ROI_138_1 | 0 | ||
ROI_138_2 | 3 | ||
ROI_139_1 | 2 | ||
ROI_139_2 | 0 | ||
ROI_13_1 | 10 | ||
ROI_13_2 | 2 | ||
ROI_140_1 | 3 | ||
ROI_140_2 | 2 | ||
ROI_141_1 | 0 | ||
ROI_141_2 | 0 | ||
ROI_142_1 | 0 | ||
ROI_142_2 | 0 | ||
ROI_143_1 | 0 | ||
ROI_143_2 | 2 | ||
ROI_144_1 | 5 | ||
ROI_144_2 | 5 | ||
ROI_145_1 | 7 | ||
ROI_145_2 | 5 |
NuClick-IHC (Lymphocyte Segmentation in IHC)
Immunohistochemistry (IHC) stained histopathology patches of lymphocytes with per-nucleus instance segmentation masks. Released by the Warwick TIA Centre as the IHC component of the NuClick framework's training/validation data, with ROIs sourced from the LYON19 cohort (CD3/CD8 IHC of breast, colon, prostate).
Overview
- Modality: Histopathology (IHC, RGB microscopy)
- Tissue: Lymphocytes in CD3/CD8-stained breast/colon/prostate
- Image size: 256x256 RGB
- Samples: 671 train + 200 validation = 871
- Ground truth: Per-nucleus instance segmentation masks generated by the NuClick interactive tool and refined for training. The paper validates these by showing a model trained on them placed first on LYON19.
Columns
| Column | Type | Notes |
|---|---|---|
id |
string | ROI identifier (e.g. ROI_100_1) |
image |
Image (RGB) | 256x256 IHC patch |
mask |
Image (mode L) |
256x256 uint8 instance map: 0 = background, 1..N = instance IDs |
num_nuclei |
int32 | Number of nuclei instances in the patch (0 if empty) |
Notes
- Approximately 30% of training patches and 25% of validation patches contain
no nuclei (
num_nuclei == 0, mask is all-zero). This matches the source release. - Max instances per patch in this release is 69, so a uint8 mask losslessly preserves all instance IDs.
- For semantic (foreground/background) use, threshold the mask with
mask > 0.
Derivation
Source: ihc_nuclick.zip from https://warwick.ac.uk/fac/cross_fac/tia/data/nuclick/
(IHC subset). The source ships 256x256 PNG images and uint32 .npy instance
maps; we re-encode masks as uint8 PNG (lossless under the observed instance
count). The companion IHC_xml_asap/ folder contains the raw ASAP-compatible
polygon annotations and is not included here.
License
The Warwick TIA release does not provide an explicit dataset license. Users must cite the NuClick paper when publishing work derived from it.
Citation
- Alemi Koohbanani N., Jahanifar M., Zamani Tajadin N., Rajpoot N. NuClick: A deep learning framework for interactive segmentation of microscopic images. Medical Image Analysis, 65:101771, 2020. doi:10.1016/j.media.2020.101771
- Downloads last month
- 19