Upload README.md
Browse files
full_anno_dataset_v0.1/README.md
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
configs:
|
3 |
+
- config_name: default
|
4 |
+
data_files:
|
5 |
+
- split: demo
|
6 |
+
path: "demo.tsv"
|
7 |
+
- split: detection
|
8 |
+
path: "disease_detection.json"
|
9 |
+
- split: segmentation
|
10 |
+
path: "*segmentation*"
|
11 |
+
- split: report_generation
|
12 |
+
path: "*report*"
|
13 |
+
---
|
14 |
+
# Dataset Description
|
15 |
+
|
16 |
+
Our OmniFM-Dr full_anno_dataset introduces a full-annotated chest x-ray dataset, which contains disease localization, segmentation (heart and lung), and report for 3038 images.
|
17 |
+
|
18 |
+
## Dataset Structure
|
19 |
+
- **disease_detection.json:**
|
20 |
+
- 'disease_detection.json' is organized in COCO format and contains bounding boxes for 15 diseases (Cardiomegaly, Pneumonia, Abnormal Aortic Knob, Nodule, Atelectasis, Edema, Pleural Effusion, Pneumothorax, Emphysema, Fibrosis, Pleural Thickening, Tuberculosis, Fracture, Hilar Enlargement, and Consolidation).
|
21 |
+
- **report.json:**
|
22 |
+
- 'report.json' is organized as {image_id: image_report}.
|
23 |
+
- demo: "0003": "The texture of both lungs increased slightly." matches with '0003.jpg'.
|
24 |
+
- **segment_heart_lung.json:**
|
25 |
+
- 'segment_heart_lung.json' is organized as {image_id: {"heart": [x1,y1,x2,y2,...], "right lung": [x1,y1,x2,y2,...], "left lung": [x1,y1,x2,y2,...], "width, height": [w, h]}}.
|
26 |
+
- demo: "0003": {
|
27 |
+
"heart": [
|
28 |
+
954, 1112, 994, 1035, 1043, 987, 1087, 971, 1136, 971, 1184, 979, 1221,
|
29 |
+
987, 1253, 987, 1286, 1035, 1326, 1120, 1366, 1229, 1387, 1319, 1403,
|
30 |
+
1403, 1403, 1501, 1366, 1569, 1302, 1594, 1245, 1594, 1192, 1594, 1136,
|
31 |
+
1586, 1087, 1577, 1035, 1561, 970, 1533, 922, 1468, 905, 1387, 905, 1302,
|
32 |
+
922, 1213
|
33 |
+
],
|
34 |
+
"right lung": [
|
35 |
+
404, 1861, 448, 1861, 485, 1723, 566, 1622, 655, 1553, 727, 1525, 909,
|
36 |
+
1513, 930, 1488, 934, 1375, 926, 1213, 990, 1051, 1006, 890, 1051, 764,
|
37 |
+
1079, 619, 1079, 465, 1051, 396, 1019, 368, 982, 360, 966, 356, 958, 356,
|
38 |
+
954, 356, 954, 356, 950, 356, 837, 364, 727, 404, 566, 546, 489, 671, 448,
|
39 |
+
801, 404, 1213, 355, 1537
|
40 |
+
],
|
41 |
+
"left lung": [
|
42 |
+
1213, 396, 1205, 404, 1201, 404, 1197, 404, 1192, 404, 1192, 408, 1188,
|
43 |
+
566, 1213, 635, 1245, 691, 1213, 833, 1221, 958, 1286, 1084, 1334, 1185,
|
44 |
+
1374, 1375, 1383, 1537, 1387, 1577, 1480, 1606, 1561, 1630, 1629, 1671,
|
45 |
+
1698, 1743, 1718, 1844, 1751, 1844, 1787, 1715, 1795, 1594, 1779, 1375,
|
46 |
+
1779, 962, 1747, 728, 1698, 566, 1589, 449, 1472, 380
|
47 |
+
],
|
48 |
+
"width, height": [2020, 2021]
|
49 |
+
}, matches with '0003.jpg'.
|
50 |
+
|
51 |
+
|