Dataset Preview
Duplicate
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
the dataset is currently locked, please try again later.
Error code:   LockedDatasetTimeoutError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

id
string
image
image
instance_mask
image
num_nuclei
int32
class_mask
image
0_l1
157
100_l1
210
101_l1
168
102_l1
212
103_l1
171
104_l1
233
105_l1
205
106_l1
252
107_l1
218
108_l1
215
109_l1
229
10_l1
199
110_l1
213
111_l1
255
112_l1
224
113_l1
183
114_l1
160
115_l1
140
116_l1
194
117_l1
139
118_l1
221
119_l1
146
11_l1
193
120_l1
245
121_l1
271
122_l1
206
123_l1
203
124_l1
213
125_l1
239
126_l1
252
127_l1
217
128_l1
207
129_l1
210
12_l1
238
130_l1
210
131_l1
217
132_l1
216
133_l1
225
134_l1
240
135_l1
202
136_l1
201
137_l1
215
138_l1
207
139_l1
205
13_l1
224
140_l1
191
141_l1
223
142_l1
261
143_l1
193
144_l1
289
145_l1
244
146_l1
297
147_l1
326
148_l1
241
149_l1
254
14_l1
195
150_l1
247
151_l1
221
152_l1
198
153_l1
216
154_l1
223
155_l1
225
156_l1
317
157_l1
218
158_l1
255
159_l1
271
15_l1
223
160_l1
295
161_l1
236
162_l1
252
163_l1
239
164_l1
223
165_l1
263
166_l1
223
167_l1
219
168_l1
208
169_l1
231
16_l1
196
170_l1
235
171_l1
250
172_l1
252
173_l1
241
174_l1
234
175_l1
220
176_l1
205
177_l1
197
178_l1
201
179_l1
191
17_l1
162
180_l1
222
181_l1
247
182_l1
209
183_l1
213
184_l1
168
185_l1
155
186_l1
177
187_l1
215
188_l1
171
189_l1
244
18_l1
199
End of preview.

LyNSeC - Lymphoma Nuclear Segmentation and Classification

Histopathology dataset of diffuse large B-cell lymphoma (DLBCL) tissue with per-nucleus instance segmentation masks across both H&E and IHC stains. Released alongside the HoLy-Net paper (Naji et al., Comput Biol Med 2024).

Source: https://zenodo.org/records/8065174 Paper: https://www.sciencedirect.com/science/article/pii/S0010482524000623

Overview

  • Modality: Histopathology (H&E + IHC brightfield microscopy)
  • Tissue: Lymph-node tissue, DLBCL
  • Stains: H&E, plus IHC markers CD3 / Ki67 / ERG
  • Tile spec: 512x512 RGB, 40x magnification
  • Total samples: 699 tiles, 161,247 annotated nuclei

Splits

Split Stain Tiles Nuclei Notes
lynsec1_ihc IHC (CD3 / Ki67 / ERG) 379 87,316 Per-nucleus marker-positive vs marker-negative class label
lynsec2_he H&E 280 65,479 Instance-only (no per-cell class label)
lynsec3_he_expert H&E (expert-refined subset of LyNSeC 2) 40 8,452 Per-nucleus tumor vs non-tumor class label

The Zenodo release does NOT ship predefined train/val/test split files; splits in the original paper are defined in code, not as released folders.

Columns

Column Type Notes
id string Tile identifier from the Zenodo release (e.g. 0_l1)
image Image (RGB) 512x512 RGB tile
instance_mask Image (16-bit grayscale PNG, mode I;16) Per-nucleus instance ID; 0 = background, 1..N = instance IDs (N up to 405 in lynsec2_he)
class_mask Image (mode L, 8-bit grayscale) - only on lynsec1_ihc and lynsec3_he_expert Per-pixel class label: 0 = background. Non-zero class semantics are inherited from the source paper; see notes below
num_nuclei int32 Number of instances in the tile (= instance_mask.max())

Class label semantics

  • lynsec1_ihc: classes {0, 1, 2}. Per the source paper, class indicates marker positivity (one of marker-negative / marker-positive). The Zenodo release does not document the specific mapping of 1 and 2 to those two states - downstream users are expected to verify against the source code.
  • lynsec3_he_expert: classes {0, 1, 2}. Per the source paper, class indicates tumor vs non-tumor cells. Same caveat about which integer maps to which class.

For binary semantic segmentation (nucleus vs background) treat instance_mask > 0 as foreground.

Derivation

Each Zenodo .npy ships as (512, 512, C) int32 with C in {4, 5}:

  • channels 0..2 = RGB image (values 0..255 stored as int32),
  • channel 3 = instance map,
  • channel 4 = class map (only when C == 5).

This release re-encodes each tile as:

  • image = Image.fromarray(arr[:,:,:3].astype(np.uint8), 'RGB') -> PNG
  • instance_mask = Image.fromarray(arr[:,:,3].astype(np.uint16), 'I;16') -> 16-bit PNG
  • class_mask = Image.fromarray(arr[:,:,4].astype(np.uint8), 'L') -> 8-bit PNG (lynsec1/3 only)

No other preprocessing.

License

CC BY 4.0 (per Zenodo record 8065174).

Citation

@article{naji2024holynet,
  title   = {HoLy-Net: Segmentation of histological images of diffuse large
             B-cell lymphoma},
  author  = {Naji, Hussein and Sancere, Lucas and Simon, Adrian and Buttner,
             Reinhard and Eich, Marie-Lisa and Lohneis, Philipp and Bozek,
             Katarzyna},
  journal = {Computers in Biology and Medicine},
  volume  = {170},
  pages   = {107978},
  year    = {2024},
  doi     = {10.1016/j.compbiomed.2024.107978}
}
Downloads last month
12