forked from ieee8023/covid-chestxray-dataset
-
Notifications
You must be signed in to change notification settings - Fork 1
/
imageannotation_ai_lung_bounding_boxes.json
12767 lines (12767 loc) · 292 KB
/
imageannotation_ai_lung_bounding_boxes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"info": {
"description": "COVID-19 image data collection: Lung Bounding Boxes",
"url": "",
"creator": "General Blockchain, Inc.",
"date_created": "04/02/2020",
"source_images": "Joseph Paul Cohen and Paul Morrison and Lan Dao, COVID-19 image data collection, arXiv:2003.11597, 2020, https://github.com/ieee8023/covid-chestxray-dataset",
"disclaimer": "These annotations and images are for proof of concept purposes only and they should not be construed as medical advice. If you continue you assume all liability when using"
},
"categories": [
{
"supercategory": "Lungs",
"id": 1,
"name": "Right Lung"
},
{
"supercategory": "Lungs",
"id": 2,
"name": "Left Lung"
}
],
"images": [
{
"license": 1,
"file_name": "auntminnie-a-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg",
"height": 888,
"width": 882,
"id": 1,
"metadata": {
"patientid": "2",
"offset": "0",
"sex": "M",
"age": "65",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "January 22, 2020",
"location": "Cho Ray Hospital, Ho Chi Minh City, Vietnam",
"doi": "10.1056/nejmc2001272",
"url": "https://www.nejm.org/doi/full/10.1056/NEJMc2001272",
"clinical notes": "infiltrate in the upper lobe of the left lung"
}
},
{
"license": 1,
"file_name": "auntminnie-b-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg",
"height": 891,
"width": 880,
"id": 2,
"metadata": {
"patientid": "2",
"offset": "3",
"sex": "M",
"age": "65",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "January 25, 2020",
"location": "Cho Ray Hospital, Ho Chi Minh City, Vietnam",
"doi": "10.1056/nejmc2001272",
"url": "https://www.nejm.org/doi/full/10.1056/NEJMc2001272",
"clinical notes": "progressive infiltrate and consolidation"
}
},
{
"license": 1,
"file_name": "auntminnie-c-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg",
"height": 876,
"width": 882,
"id": 3,
"metadata": {
"patientid": "2",
"offset": "5",
"sex": "M",
"age": "65",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "January 27, 2020",
"location": "Cho Ray Hospital, Ho Chi Minh City, Vietnam",
"doi": "10.1056/nejmc2001272",
"url": "https://www.nejm.org/doi/full/10.1056/NEJMc2001272",
"clinical notes": "progressive infiltrate and consolidation"
}
},
{
"license": 1,
"file_name": "auntminnie-d-2020_01_28_23_51_6665_2020_01_28_Vietnam_coronavirus.jpeg",
"height": 874,
"width": 880,
"id": 4,
"metadata": {
"patientid": "2",
"offset": "6",
"sex": "M",
"age": "65",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "January 28, 2020",
"location": "Cho Ray Hospital, Ho Chi Minh City, Vietnam",
"doi": "10.1056/nejmc2001272",
"url": "https://www.nejm.org/doi/full/10.1056/NEJMc2001272",
"clinical notes": "progressive infiltrate and consolidation"
}
},
{
"license": 1,
"file_name": "nejmc2001573_f1a.jpeg",
"height": 1272,
"width": 1645,
"id": 5,
"metadata": {
"patientid": "4",
"offset": "0",
"sex": "F",
"age": "52",
"finding": "COVID-19",
"view": "PA",
"modality": "X-ray",
"date": "January 25, 2020",
"location": "Changhua Christian Hospital, Changhua City, Taiwan",
"doi": "10.1056/NEJMc2001573",
"url": "https://www.nejm.org/doi/full/10.1056/NEJMc2001573",
"clinical notes": "diffuse infiltrates in the bilateral lower lungs"
}
},
{
"license": 1,
"file_name": "nejmc2001573_f1b.jpeg",
"height": 1308,
"width": 1652,
"id": 6,
"metadata": {
"patientid": "4",
"offset": "5",
"sex": "F",
"age": "52",
"finding": "COVID-19",
"view": "PA",
"modality": "X-ray",
"date": "January 30, 2020",
"location": "Changhua Christian Hospital, Changhua City, Taiwan",
"doi": "10.1056/NEJMc2001573",
"url": "https://www.nejm.org/doi/full/10.1056/NEJMc2001573",
"clinical notes": "progressive diffuse interstitial opacities and consolidation in the bilateral parahilar areas and lower lung fields"
}
},
{
"license": 1,
"file_name": "ARDSSevere.png",
"height": 631,
"width": 790,
"id": 7,
"metadata": {
"patientid": "5",
"finding": "ARDS",
"view": "PA",
"modality": "X-ray",
"date": "2017",
"url": "https://en.wikipedia.org/wiki/File:ARDSSevere.png",
"clinical notes": "Severe ARDS. Person is intubated with an OG in place."
}
},
{
"license": 1,
"file_name": "lancet-case2a.jpg",
"height": 1402,
"width": 1401,
"id": 8,
"metadata": {
"patientid": "6",
"offset": "0",
"finding": "COVID-19",
"view": "PA",
"modality": "X-ray",
"date": "2020",
"location": "Wuhan Jinyintan Hospital, Wuhan, Hubei Province, China",
"doi": "10.1016/S0140-6736(20)30211-7",
"url": "https://www.thelancet.com/journals/lancet/article/PIIS0140-6736%2820%2930211-7/fulltext",
"clinical notes": "Case 2: chest x-ray obtained on Jan 6 (2A). The brightness of both lungs was decreased and multiple patchy shadows were observed; edges were blurred, and large ground-glass opacity and condensation shadows were mainly on the lower right lobe. Tracheal intubation could be seen in the trachea. Heart shadow roughly presents in the normal range. On the left side, the diaphragmatic surface is not clearly displayed. The right side of the diaphragmatic surface was light and smooth and rib phrenic angle was less sharp. Chest x-ray on Jan 10 showed worse status (2B)"
}
},
{
"license": 1,
"file_name": "lancet-case2b.jpg",
"height": 1412,
"width": 1404,
"id": 9,
"metadata": {
"patientid": "6",
"offset": "4",
"finding": "COVID-19",
"view": "PA",
"modality": "X-ray",
"date": "2020",
"location": "Wuhan Jinyintan Hospital, Wuhan, Hubei Province, China",
"doi": "10.1016/S0140-6736(20)30211-7",
"url": "https://www.thelancet.com/journals/lancet/article/PIIS0140-6736%2820%2930211-7/fulltext",
"clinical notes": "Case 2: chest x-ray obtained on Jan 6 (2A). The brightness of both lungs was decreased and multiple patchy shadows were observed; edges were blurred, and large ground-glass opacity and condensation shadows were mainly on the lower right lobe. Tracheal intubation could be seen in the trachea. Heart shadow roughly presents in the normal range. On the left side, the diaphragmatic surface is not clearly displayed. The right side of the diaphragmatic surface was light and smooth and rib phrenic angle was less sharp. Chest x-ray on Jan 10 showed worse status (2B)"
}
},
{
"license": 1,
"file_name": "SARS-10.1148rg.242035193-g04mr34g0-Fig8a-day0.jpeg",
"height": 1474,
"width": 1692,
"id": 10,
"metadata": {
"patientid": "3",
"offset": "4",
"sex": "M",
"age": "74",
"finding": "SARS",
"survival": "N",
"view": "PA",
"modality": "X-ray",
"date": "2004",
"location": "Mount Sinai Hospital, Toronto, Ontario, Canada",
"doi": "10.1148/rg.242035193",
"url": "https://pubs.rsna.org/doi/10.1148/rg.242035193",
"clinical notes": "SARS in a 74-year-old man who developed symptoms 4 days after exposure."
}
},
{
"license": 1,
"file_name": "SARS-10.1148rg.242035193-g04mr34g0-Fig8b-day5.jpeg",
"height": 1546,
"width": 1800,
"id": 11,
"metadata": {
"patientid": "3",
"offset": "9",
"sex": "M",
"age": "74",
"finding": "SARS",
"survival": "N",
"view": "PA",
"modality": "X-ray",
"date": "2004",
"location": "Mount Sinai Hospital, Toronto, Ontario, Canada",
"doi": "10.1148/rg.242035193",
"url": "https://pubs.rsna.org/doi/10.1148/rg.242035193",
"clinical notes": "SARS in a 74-year-old man who developed symptoms 4 days after exposure."
}
},
{
"license": 1,
"file_name": "SARS-10.1148rg.242035193-g04mr34g0-Fig8c-day10.jpeg",
"height": 1546,
"width": 1800,
"id": 12,
"metadata": {
"patientid": "3",
"offset": "10",
"sex": "M",
"age": "74",
"finding": "SARS",
"survival": "N",
"view": "PA",
"modality": "X-ray",
"date": "2004",
"location": "Mount Sinai Hospital, Toronto, Ontario, Canada",
"doi": "10.1148/rg.242035193",
"url": "https://pubs.rsna.org/doi/10.1148/rg.242035193",
"clinical notes": "SARS in a 74-year-old man who developed symptoms 4 days after exposure."
}
},
{
"license": 1,
"file_name": "SARS-10.1148rg.242035193-g04mr34g04a-Fig4a-day7.jpeg",
"height": 1800,
"width": 1772,
"id": 13,
"metadata": {
"patientid": "7",
"offset": "7",
"sex": "F",
"age": "29",
"finding": "SARS",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "2004",
"location": "Mount Sinai Hospital, Toronto, Ontario, Canada",
"doi": "10.1148/rg.242035193",
"url": "https://pubs.rsna.org/doi/10.1148/rg.242035193",
"clinical notes": "SARS in a 29-year-old woman who presented 7 days after exposure. (a) Posteroanterior radiograph depicts a subtle focus of consolidation in the right lower zone, partly obscured by breast tissue. (b) Posteroanterior radiograph obtained 5 days later shows that the consolidation has expanded and become more dense. The chest radiograph obtained 13 days after admission was normal."
}
},
{
"license": 1,
"file_name": "SARS-10.1148rg.242035193-g04mr34g04b-Fig4b-day12.jpeg",
"height": 1710,
"width": 1708,
"id": 14,
"metadata": {
"patientid": "7",
"offset": "12",
"sex": "F",
"age": "29",
"finding": "SARS",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "2004",
"location": "Mount Sinai Hospital, Toronto, Ontario, Canada",
"doi": "10.1148/rg.242035193",
"url": "https://pubs.rsna.org/doi/10.1148/rg.242035193",
"clinical notes": "SARS in a 29-year-old woman who presented 7 days after exposure. (a) Posteroanterior radiograph depicts a subtle focus of consolidation in the right lower zone, partly obscured by breast tissue. (b) Posteroanterior radiograph obtained 5 days later shows that the consolidation has expanded and become more dense. The chest radiograph obtained 13 days after admission was normal."
}
},
{
"license": 1,
"file_name": "SARS-10.1148rg.242035193-g04mr34g05x-Fig5-day9.jpeg",
"height": 1593,
"width": 1800,
"id": 15,
"metadata": {
"patientid": "8",
"offset": "9",
"sex": "F",
"age": "42",
"finding": "SARS",
"view": "PA",
"modality": "X-ray",
"date": "2004",
"location": "Mount Sinai Hospital, Toronto, Ontario, Canada",
"doi": "10.1148/rg.242035193",
"url": "https://pubs.rsna.org/doi/10.1148/rg.242035193",
"clinical notes": "SARS in a 42-year-old woman who presented 9 days after exposure. Posteroanterior radiograph shows extensive consolidation in the left lower lobe."
}
},
{
"license": 1,
"file_name": "SARS-10.1148rg.242035193-g04mr34g07a-Fig7a-day5.jpeg",
"height": 1508,
"width": 1800,
"id": 16,
"metadata": {
"patientid": "9",
"offset": "5",
"sex": "F",
"age": "46",
"finding": "SARS",
"view": "PA",
"modality": "X-ray",
"date": "2004",
"location": "Mount Sinai Hospital, Toronto, Ontario, Canada",
"doi": "10.1148/rg.242035193",
"url": "https://pubs.rsna.org/doi/10.1148/rg.242035193",
"clinical notes": "SARS in a 46-year-old woman who presented 5 days after developing symptoms. (a) Anteroposterior radiograph shows bilateral multifocal opacities, which are more extensive in the left lung. (b) Anteroposterior radiograph obtained 12 days after admission shows a resolution of central airspace consolidation and residual peripheral consolidation. The patient was asymptomatic. (c-e) Axial low-dose CT images obtained on the same day as b show air bronchograms (c), multiple high-attenuation foci (d), and peripheral subpleural areas of high attenuation in the lower lobes (e). The extent of disease was underestimated on b."
}
},
{
"license": 1,
"file_name": "SARS-10.1148rg.242035193-g04mr34g07b-Fig7b-day12.jpeg",
"height": 1522,
"width": 1800,
"id": 17,
"metadata": {
"patientid": "9",
"offset": "12",
"sex": "F",
"age": "46",
"finding": "SARS",
"view": "PA",
"modality": "X-ray",
"date": "2004",
"location": "Mount Sinai Hospital, Toronto, Ontario, Canada",
"doi": "10.1148/rg.242035193",
"url": "https://pubs.rsna.org/doi/10.1148/rg.242035193",
"clinical notes": "SARS in a 46-year-old woman who presented 5 days after developing symptoms. (a) Anteroposterior radiograph shows bilateral multifocal opacities, which are more extensive in the left lung. (b) Anteroposterior radiograph obtained 12 days after admission shows a resolution of central airspace consolidation and residual peripheral consolidation. The patient was asymptomatic. (c-e) Axial low-dose CT images obtained on the same day as b show air bronchograms (c), multiple high-attenuation foci (d), and peripheral subpleural areas of high attenuation in the lower lobes (e). The extent of disease was underestimated on b."
}
},
{
"license": 1,
"file_name": "SARS-10.1148rg.242035193-g04mr34g09a-Fig9a-day17.jpeg",
"height": 1800,
"width": 1750,
"id": 18,
"metadata": {
"patientid": "10",
"offset": "17",
"sex": "F",
"age": "73",
"finding": "SARS",
"survival": "N",
"view": "PA",
"modality": "X-ray",
"date": "2004",
"location": "Mount Sinai Hospital, Toronto, Ontario, Canada",
"doi": "10.1148/rg.242035193",
"url": "https://pubs.rsna.org/doi/10.1148/rg.242035193",
"clinical notes": "SARS in a 73-year-old woman who presented 17 days after exposure. The chest radiograph obtained on admission (not shown) was normal. (a) Anteroposterior radiograph obtained 2 days after admission shows focal consolidation in the right lung. (b) Anteroposterior radiograph obtained 8 days later shows bilateral multifocal consolidation. (c) Anteroposterior radiograph obtained 8 days later shows diffuse airspace disease. The patient died 36 days after exposure to SARS."
}
},
{
"license": 1,
"file_name": "SARS-10.1148rg.242035193-g04mr34g09b-Fig9b-day19.jpeg",
"height": 1779,
"width": 1800,
"id": 19,
"metadata": {
"patientid": "10",
"offset": "19",
"sex": "F",
"age": "73",
"finding": "SARS",
"survival": "N",
"view": "PA",
"modality": "X-ray",
"date": "2004",
"location": "Mount Sinai Hospital, Toronto, Ontario, Canada",
"doi": "10.1148/rg.242035193",
"url": "https://pubs.rsna.org/doi/10.1148/rg.242035193",
"clinical notes": "SARS in a 73-year-old woman who presented 17 days after exposure. The chest radiograph obtained on admission (not shown) was normal. (a) Anteroposterior radiograph obtained 2 days after admission shows focal consolidation in the right lung. (b) Anteroposterior radiograph obtained 8 days later shows bilateral multifocal consolidation. (c) Anteroposterior radiograph obtained 8 days later shows diffuse airspace disease. The patient died 36 days after exposure to SARS."
}
},
{
"license": 1,
"file_name": "1-s2.0-S0140673620303706-fx1_lrg.jpg",
"height": 1148,
"width": 2563,
"id": 20,
"metadata": {
"patientid": "11",
"offset": "0",
"sex": "M",
"age": "56",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "2020",
"location": "Sunnybrook Health Sciences Centre, Toronto, Ontario, Canada",
"doi": "10.1016/S0140-6736(20)30370-6",
"url": "https://www.sciencedirect.com/science/article/pii/S0140673620303706",
"clinical notes": "Chest x-ray shows bilateral peribronchovascular, ill-defined opacities in all lung zones."
}
},
{
"license": 1,
"file_name": "nCoV-radiol.2020200269.fig1-day7.jpeg",
"height": 630,
"width": 700,
"id": 21,
"metadata": {
"patientid": "12",
"offset": "7",
"sex": "M",
"age": "42",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "January 1, 2020",
"location": "Tongji Medical College, Wuhan, Hubei Province, China",
"doi": "10.1148/radiol.2020200269",
"url": "https://pubs.rsna.org/doi/10.1148/radiol.2020200269",
"clinical notes": "A, Chest radiograph obtained on day 7 after the onset of symptoms shows opacities in the left lower and right upper lobes."
}
},
{
"license": 1,
"file_name": "nejmoa2001191_f1-PA.jpeg",
"height": 842,
"width": 1090,
"id": 22,
"metadata": {
"patientid": "13",
"offset": "4",
"sex": "M",
"age": "35",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "January 19, 2020",
"location": "Snohomish County, Washington, USA",
"doi": "10.1056/NEJMoa2001191",
"url": "https://www.nejm.org/doi/full/10.1056/NEJMoa2001191",
"clinical notes": "No thoracic abnormalities were noted."
}
},
{
"license": 1,
"file_name": "nejmoa2001191_f3-PA.jpeg",
"height": 874,
"width": 1104,
"id": 23,
"metadata": {
"patientid": "13",
"offset": "7",
"sex": "M",
"age": "35",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "January 22, 2020",
"location": "Snohomish County, Washington, USA",
"doi": "10.1056/NEJMoa2001191",
"url": "https://www.nejm.org/doi/full/10.1056/NEJMoa2001191",
"clinical notes": "No acute intrathoracic plain-film abnormality was noted."
}
},
{
"license": 1,
"file_name": "nejmoa2001191_f4.jpeg",
"height": 1439,
"width": 1800,
"id": 24,
"metadata": {
"patientid": "13",
"offset": "9",
"sex": "M",
"age": "35",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "January 24, 2020",
"location": "Snohomish County, Washington, USA",
"doi": "10.1056/NEJMoa2001191",
"url": "https://www.nejm.org/doi/full/10.1056/NEJMoa2001191",
"clinical notes": "Increasing left basilar opacity was visible, arousing concern about pneumonia."
}
},
{
"license": 1,
"file_name": "nejmoa2001191_f5-PA.jpeg",
"height": 841,
"width": 1107,
"id": 25,
"metadata": {
"patientid": "13",
"offset": "10",
"sex": "M",
"age": "35",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "January 26, 2020",
"location": "Snohomish County, Washington, USA",
"doi": "10.1056/NEJMoa2001191",
"url": "https://www.nejm.org/doi/full/10.1056/NEJMoa2001191",
"clinical notes": "Stable streaky opacities in the lung bases were visible, indicating likely atypical pneumonia; the opacities have steadily increased in density over time."
}
},
{
"license": 1,
"file_name": "ryct.2020200034.fig2.jpeg",
"height": 1570,
"width": 1695,
"id": 26,
"metadata": {
"patientid": "14",
"offset": "0",
"sex": "F",
"finding": "COVID-19",
"view": "PA",
"modality": "X-ray",
"date": "2020",
"doi": "10.1148/ryct.2020200034",
"url": "https://pubs.rsna.org/doi/full/10.1148/ryct.2020200034"
}
},
{
"license": 1,
"file_name": "ryct.2020200034.fig5-day0.jpeg",
"height": 1333,
"width": 1118,
"id": 27,
"metadata": {
"patientid": "15",
"offset": "0",
"sex": "M",
"finding": "COVID-19",
"view": "PA",
"modality": "X-ray",
"date": "2020",
"doi": "10.1148/ryct.2020200034",
"url": "https://pubs.rsna.org/doi/full/10.1148/ryct.2020200034",
"clinical notes": "Chest radiographs of an elderly male patient from Wuhan, China, who travelled to Hong Kong, China. These are 3 chest radiographs selected out of the daily chest radiographs acquired in this patient. The consolidation in the right lower zone on day 0 persist into day 4 with new consolidative changes in the right midzone periphery and perihilar region. This midzone change improves on the day 7 film."
}
},
{
"license": 1,
"file_name": "ryct.2020200034.fig5-day4.jpeg",
"height": 1332,
"width": 1175,
"id": 28,
"metadata": {
"patientid": "15",
"offset": "4",
"sex": "M",
"finding": "COVID-19",
"view": "PA",
"modality": "X-ray",
"date": "2020",
"doi": "10.1148/ryct.2020200034",
"url": "https://pubs.rsna.org/doi/full/10.1148/ryct.2020200034",
"clinical notes": "Chest radiographs of an elderly male patient from Wuhan, China, who travelled to Hong Kong, China. These are 3 chest radiographs selected out of the daily chest radiographs acquired in this patient. The consolidation in the right lower zone on day 0 persist into day 4 with new consolidative changes in the right midzone periphery and perihilar region. This midzone change improves on the day 7 film."
}
},
{
"license": 1,
"file_name": "ryct.2020200034.fig5-day7.jpeg",
"height": 1330,
"width": 1187,
"id": 29,
"metadata": {
"patientid": "15",
"offset": "7",
"sex": "M",
"finding": "COVID-19",
"view": "PA",
"modality": "X-ray",
"date": "2020",
"doi": "10.1148/ryct.2020200034",
"url": "https://pubs.rsna.org/doi/full/10.1148/ryct.2020200034",
"clinical notes": "Chest radiographs of an elderly male patient from Wuhan, China, who travelled to Hong Kong, China. These are 3 chest radiographs selected out of the daily chest radiographs acquired in this patient. The consolidation in the right lower zone on day 0 persist into day 4 with new consolidative changes in the right midzone periphery and perihilar region. This midzone change improves on the day 7 film."
}
},
{
"license": 1,
"file_name": "ryct.2020200028.fig1a.jpeg",
"height": 4095,
"width": 3342,
"id": 30,
"metadata": {
"patientid": "16",
"offset": "5",
"sex": "F",
"age": "59",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "2020",
"location": "Sichuan Provincial People?? Hospital, Chengdu, China",
"doi": "10.1148/ryct.2020200028",
"url": "https://pubs.rsna.org/doi/full/10.1148/ryct.2020200028",
"clinical notes": "Chest radiograph in a patient with COVID-19 infection demonstrates right infrahilar airspace opacities."
}
},
{
"license": 1,
"file_name": "jkms-35-e79-g001-l-a.jpg",
"height": 342,
"width": 417,
"id": 31,
"metadata": {
"patientid": "17",
"offset": "3",
"sex": "M",
"age": "54",
"finding": "COVID-19",
"survival": "Y",
"view": "AP",
"modality": "X-ray",
"date": "2020",
"location": "Myongji Hospital, Goyang, Korea",
"doi": "10.3346/jkms.2020.35.e79",
"url": "https://www.jkms.org/DOIx.php?id=10.3346/jkms.2020.35.e79",
"clinical notes": "Small consolidation in right upper lobe and ground-glass opacities in both lower lobes were observed on high-resolution computed tomography scan"
}
},
{
"license": 1,
"file_name": "jkms-35-e79-g001-l-b.jpg",
"height": 341,
"width": 417,
"id": 32,
"metadata": {
"patientid": "17",
"offset": "9",
"sex": "M",
"age": "54",
"finding": "COVID-19",
"survival": "Y",
"view": "AP",
"modality": "X-ray",
"date": "2020",
"location": "Myongji Hospital, Goyang, Korea",
"doi": "10.3346/jkms.2020.35.e79",
"url": "https://www.jkms.org/DOIx.php?id=10.3346/jkms.2020.35.e79",
"clinical notes": "Small consolidation in right upper lobe and ground-glass opacities in both lower lobes were observed on high-resolution computed tomography scan"
}
},
{
"license": 1,
"file_name": "jkms-35-e79-g001-l-c.jpg",
"height": 341,
"width": 416,
"id": 33,
"metadata": {
"patientid": "17",
"offset": "15",
"sex": "M",
"age": "54",
"finding": "COVID-19",
"survival": "Y",
"view": "AP",
"modality": "X-ray",
"date": "2020",
"location": "Myongji Hospital, Goyang, Korea",
"doi": "10.3346/jkms.2020.35.e79",
"url": "https://www.jkms.org/DOIx.php?id=10.3346/jkms.2020.35.e79",
"clinical notes": "Small consolidation in right upper lobe and ground-glass opacities in both lower lobes were observed on high-resolution computed tomography scan"
}
},
{
"license": 1,
"file_name": "radiol.2020200490.fig3.jpeg",
"height": 1343,
"width": 1300,
"id": 34,
"metadata": {
"patientid": "18",
"offset": "5",
"sex": "F",
"age": "53",
"finding": "COVID-19",
"view": "PA",
"modality": "X-ray",
"date": "2020",
"location": "Jinling Hospital, Medical School of Nanjing University, Nanjing, Jiangsu, China",
"doi": "10.1148/radiol.2020200490",
"url": "https://pubs.rsna.org/doi/full/10.1148/radiol.2020200490",
"clinical notes": "Chest radiography of confirmed Coronavirus Disease 2019 (COVID-19) pneumonia A 53-year-old female had fever and cough for 5 days. Multifocal patchy opacities can be seen in both lungs (arrows)."
}
},
{
"license": 1,
"file_name": "1-s2.0-S0929664620300449-gr2_lrg-a.jpg",
"height": 1163,
"width": 1165,
"id": 35,
"metadata": {
"patientid": "19",
"offset": "10",
"sex": "F",
"age": "55",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "January 20, 2020",
"location": "Taoyuan General Hospital, Taoyuan, Taiwan",
"doi": "10.1016/j.jfma.2020.02.007",
"url": "https://www.sciencedirect.com/science/article/pii/S0929664620300449",
"clinical notes": "Chest X-ray showed progression of prominent bilateral perihilar infiltration and ill-defined patchy opacities at bilateral lungs, which slowly resolved on the follow-up image."
}
},
{
"license": 1,
"file_name": "1-s2.0-S0929664620300449-gr2_lrg-b.jpg",
"height": 1161,
"width": 1170,
"id": 36,
"metadata": {
"patientid": "19",
"offset": "13",
"sex": "F",
"age": "55",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "January 23, 2020",
"location": "Taoyuan General Hospital, Taoyuan, Taiwan",
"doi": "10.1016/j.jfma.2020.02.007",
"url": "https://www.sciencedirect.com/science/article/pii/S0929664620300449",
"clinical notes": "Chest X-ray showed progression of prominent bilateral perihilar infiltration and ill-defined patchy opacities at bilateral lungs, which slowly resolved on the follow-up image."
}
},
{
"license": 1,
"file_name": "1-s2.0-S0929664620300449-gr2_lrg-c.jpg",
"height": 1165,
"width": 1165,
"id": 37,
"metadata": {
"patientid": "19",
"offset": "17",
"sex": "F",
"age": "55",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "January 27, 2020",
"location": "Taoyuan General Hospital, Taoyuan, Taiwan",
"doi": "10.1016/j.jfma.2020.02.007",
"url": "https://www.sciencedirect.com/science/article/pii/S0929664620300449",
"clinical notes": "Chest X-ray showed progression of prominent bilateral perihilar infiltration and ill-defined patchy opacities at bilateral lungs, which slowly resolved on the follow-up image."
}
},
{
"license": 1,
"file_name": "1-s2.0-S0929664620300449-gr2_lrg-d.jpg",
"height": 1161,
"width": 1166,
"id": 38,
"metadata": {
"patientid": "19",
"offset": "25",
"sex": "F",
"age": "55",
"finding": "COVID-19",
"survival": "Y",
"view": "PA",
"modality": "X-ray",
"date": "February 4, 2020",
"location": "Taoyuan General Hospital, Taoyuan, Taiwan",
"doi": "10.1016/j.jfma.2020.02.007",
"url": "https://www.sciencedirect.com/science/article/pii/S0929664620300449",
"clinical notes": "Chest X-ray showed progression of prominent bilateral perihilar infiltration and ill-defined patchy opacities at bilateral lungs, which slowly resolved on the follow-up image."
}
},
{
"license": 1,
"file_name": "covid-19-pneumonia-15-PA.jpg",
"height": 3368,
"width": 2800,
"id": 39,
"metadata": {
"patientid": "20",
"sex": "M",
"finding": "COVID-19",
"view": "PA",
"modality": "X-ray",
"date": "2020",
"location": "Jönköping, Sweden",
"url": "https://radiopaedia.org/cases/covid-19-pneumonia-15",
"license": "CC BY-NC-SA",
"clinical notes": "Elderly male, covid-19 positive. Fever and elevated c-reactive protein. Perihilar and apical, mostly peripheral,opacifications bilaterally.",
"other notes": "Case courtesy of Dr Ali Mashalla hre, Radiopaedia.org, rID: 75037"
}
},
{
"license": 1,
"file_name": "covid-19-pneumonia-2.jpg",
"height": 1262,
"width": 1446,
"id": 40,
"metadata": {
"patientid": "21",
"offset": "7",
"sex": "F",
"age": "50",
"finding": "COVID-19",
"view": "PA",
"modality": "X-ray",
"date": "2020",
"location": "Macao, China",
"url": "https://radiopaedia.org/cases/covid-19-pneumonia-2",
"license": "CC BY-NC-SA",
"clinical notes": "Productive cough with a sore throat for 1 week, no fever or chest pain, traveling to Macau from Wuhan 3 days prior, denied close contact with wet market. Multiple small bilateral areas of patchy confluent opacification, including a discrete rounded opacity in the right lower zone.",
"other notes": "Case courtesy of Medico Assistente Dr, Chong Keng Sang, Sam, Radiopaedia.org, rID: 73893"
}
},
{
"license": 1,
"file_name": "covid-19-pneumonia-7-PA.jpg",
"height": 2840,
"width": 2972,
"id": 41,
"metadata": {
"patientid": "22",
"offset": "10",
"sex": "M",
"age": "70",
"finding": "COVID-19",
"view": "PA",
"modality": "X-ray",
"date": "2020",
"location": "Riccione, Italy",
"url": "https://radiopaedia.org/cases/covid-19-pneumonia-7",
"license": "CC BY-NC-SA",
"clinical notes": "Fever, cough, breathing difficulties for about ten days. Vertical air space consolidation along the left costal margin.",
"other notes": "Case courtesy of Dr Domenico Nicoletti, Radiopaedia.org, rID: 74724"
}
},
{
"license": 1,
"file_name": "covid-19-pneumonia-14-PA.png",
"height": 2190,
"width": 2567,
"id": 42,
"metadata": {
"patientid": "23",
"sex": "F",
"age": "70",
"finding": "COVID-19",
"view": "PA",
"modality": "X-ray",
"date": "2020",
"location": "Ospedale Santo Spirito. Rome, Italy",
"url": "https://radiopaedia.org/cases/covid-19-pneumonia-14",
"license": "CC BY-NC-SA",
"clinical notes": "Admitted at A&E with shortness of breath. There is a coarsening of lung markings more evident at the lower fields (R>L) but no clear consolidation seen. Surgical clips overlie the right breast shadow.",
"other notes": "Case courtesy of Dr Fabio Macori, Radiopaedia.org, rID: 74887"
}
},
{
"license": 1,
"file_name": "covid-19-pneumonia-12.jpg",
"height": 1835,
"width": 2386,
"id": 43,
"metadata": {
"patientid": "24",
"sex": "M",
"age": "75",
"finding": "COVID-19",
"view": "PA",
"modality": "X-ray",
"date": "2020",
"location": "Ospedale Santo Spirito. Rome, Italy",
"url": "https://radiopaedia.org/cases/covid-19-pneumonia-12",
"license": "CC BY-NC-SA",
"clinical notes": "AP chest radiograph for CVC position shows the presence of extensive bilateral ground-glass opacities as demonstrated on the recent CT. Also right IJV catheter and ETT noted.",
"other notes": "Case courtesy of Dr Fabio Macori, Radiopaedia.org, rID: 74867"
}
},
{
"license": 1,
"file_name": "acute-respiratory-distress-syndrome-ards-1.jpg",
"height": 2048,
"width": 2494,
"id": 44,
"metadata": {
"patientid": "25",
"sex": "M",
"age": "50",
"finding": "ARDS",
"view": "PA",
"modality": "X-ray",
"date": "February 26, 2019",
"location": "Royal Brisbane and Women's Hospital, Brisbane, Australia",
"url": "https://radiopaedia.org/cases/acute-respiratory-distress-syndrome-ards-1",
"license": "CC BY-NC-SA",
"clinical notes": "ETT tip above the carina. NGT in situ. Right jugular CVL tip projected at the SVC/RA junction. Diffuse bilateral and symmetric coalescent air space opacities which are less severe at the lung apices with numerous small rounded lucencies through out. Heart is mildly enlarged (although a supine projection).",
"other notes": "Case courtesy of Assoc Prof Craig Hacking, Radiopaedia.org, rID: 66478"
}
},
{
"license": 1,
"file_name": "acute-respiratory-distress-syndrome-ards.jpg",
"height": 816,
"width": 999,
"id": 45,
"metadata": {
"patientid": "26",
"sex": "M",
"age": "65",
"finding": "ARDS",
"view": "PA",
"modality": "X-ray",
"date": "May 10, 2015",
"location": "Melbourne, Australia",
"url": "https://radiopaedia.org/cases/acute-respiratory-distress-syndrome-ards",
"license": "CC BY-NC-SA",
"clinical notes": "Admitted to ICU with necrotizing fasciitis, septic shock and acute renal failure. Progressive respiratory failure requiring ventilation. Multifocal bilateral air-space opacities, in a predominantly perihilar and lower zone distribution.",
"other notes": "Case courtesy of Assoc Prof Frank Gaillard, Radiopaedia.org, rID: 35985"
}
},
{
"license": 1,
"file_name": "ards-secondary-to-tiger-snake-bite.png",
"height": 795,
"width": 927,
"id": 46,
"metadata": {
"patientid": "27",
"offset": "2",
"sex": "M",
"age": "35",
"finding": "ARDS",
"view": "PA",
"modality": "X-ray",
"date": "June 5, 2017",
"location": "Royal Brisbane and Women's Hospital, Brisbane, Australia",
"url": "https://radiopaedia.org/cases/ards-secondary-to-tiger-snake-bite",
"license": "CC BY-NC-SA",
"clinical notes": "ETT, NGT and right jugular CVL are well positioned. Diffuse hazy and coalescent airspace opacification bilaterally with a predominance in the lower and mid zones (which has increased from the initial daily CXRs).",
"other notes": "Case courtesy of Assoc Prof Craig Hacking, Radiopaedia.org, rID: 53759"
}
},
{
"license": 1,
"file_name": "pneumocystis-pneumonia-2-PA.png",