├── GraphDataset.py ├── Patch_classification ├── dataset.py ├── generate_distill_submission.py ├── generate_soft_labels.py ├── loss_function.py ├── lrs_scheduler.py ├── models.py ├── requirements.txt ├── seresnext.py ├── train.py ├── util.py └── utils.py ├── README.md ├── Suspicious_cell_detection ├── augmentation.py ├── build_network.py ├── cfg.py ├── create_samples.py ├── data_loader.py ├── evaluation.py ├── lib │ ├── README.md │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── __init__.cpython-37.pyc │ ├── build.sh │ ├── nms │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── __init__.cpython-37.pyc │ │ ├── gpu_nms.cpp │ │ ├── gpu_nms.cpython-37m-x86_64-linux-gnu.so │ │ ├── gpu_nms.hpp │ │ ├── gpu_nms.pyx │ │ ├── nms_kernel.cu │ │ ├── nums_py.py │ │ ├── nums_py1.c │ │ ├── nums_py1.pyx │ │ ├── nums_py2.c │ │ ├── nums_py2.pyx │ │ ├── setup1.py │ │ └── setup2.py │ ├── setup3.py │ └── test_num.py ├── losses.py ├── losses_coco.py ├── models │ ├── .DS_Store │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── anchors.cpython-36.pyc │ │ ├── anchors.cpython-37.pyc │ │ ├── basic_block.cpython-36.pyc │ │ ├── basic_block.cpython-37.pyc │ │ ├── retinanet.cpython-36.pyc │ │ └── retinanet.cpython-37.pyc │ ├── anchors.py │ ├── basic_block.py │ └── retinanet.py ├── train.py ├── util.py └── val.py ├── data ├── Sample of Image Tiles │ ├── 8_12_52.jpg │ ├── 8_16_68.jpg │ ├── 8_48_56.jpg │ ├── 8_52_100.jpg │ └── 8_88_64.jpg ├── Sample of graphs │ ├── bottom-K │ │ ├── C21091300154C101_20 │ │ │ ├── fcmatrix_20.npy │ │ │ └── feature_20.npy │ │ ├── C21091600070C101_20 │ │ │ ├── fcmatrix_20.npy │ │ │ └── feature_20.npy │ │ ├── C21091900194C101_20 │ │ │ ├── fcmatrix_20.npy │ │ │ └── feature_20.npy │ │ ├── C21092100032C101_20 │ │ │ ├── fcmatrix_20.npy │ │ │ └── feature_20.npy │ │ ├── C21092500059C101_20 │ │ │ ├── fcmatrix_20.npy │ │ │ └── feature_20.npy │ │ ├── C21092500244C101_20 │ │ │ ├── fcmatrix_20.npy │ │ │ └── feature_20.npy │ │ └── C21092800126C101_20 │ │ │ ├── fcmatrix_20.npy │ │ │ └── feature_20.npy │ └── top-K │ │ ├── C21091300154C101_20 │ │ ├── fcmatrix_20.npy │ │ └── feature_20.npy │ │ ├── C21091600070C101_20 │ │ ├── fcmatrix_20.npy │ │ └── feature_20.npy │ │ ├── C21091900194C101_20 │ │ ├── fcmatrix_20.npy │ │ └── feature_20.npy │ │ ├── C21092100032C101_20 │ │ ├── fcmatrix_20.npy │ │ └── feature_20.npy │ │ ├── C21092500059C101_20 │ │ ├── fcmatrix_20.npy │ │ └── feature_20.npy │ │ ├── C21092500244C101_20 │ │ ├── fcmatrix_20.npy │ │ └── feature_20.npy │ │ └── C21092800126C101_20 │ │ ├── fcmatrix_20.npy │ │ └── feature_20.npy └── Sample of patches │ ├── C21091300154C101_20 │ ├── bottom-K │ │ ├── C21091300154C101_20_8_16_60_163.jpg │ │ ├── C21091300154C101_20_8_24_68_121.jpg │ │ ├── C21091300154C101_20_8_24_68_133.jpg │ │ ├── C21091300154C101_20_8_36_56_151.jpg │ │ ├── C21091300154C101_20_8_44_40_188.jpg │ │ ├── C21091300154C101_20_8_44_64_07.jpg │ │ ├── C21091300154C101_20_8_44_80_66.jpg │ │ ├── C21091300154C101_20_8_44_92_40.jpg │ │ ├── C21091300154C101_20_8_48_100_149.jpg │ │ ├── C21091300154C101_20_8_48_100_69.jpg │ │ ├── C21091300154C101_20_8_48_32_128.jpg │ │ ├── C21091300154C101_20_8_48_44_63.jpg │ │ ├── C21091300154C101_20_8_48_52_174.jpg │ │ ├── C21091300154C101_20_8_60_72_73.jpg │ │ ├── C21091300154C101_20_8_80_72_74.jpg │ │ ├── C21091300154C101_20_8_80_80_97.jpg │ │ ├── C21091300154C101_20_8_80_88_147.jpg │ │ ├── C21091300154C101_20_8_80_88_50.jpg │ │ ├── C21091300154C101_20_8_92_48_175.jpg │ │ └── C21091300154C101_20_8_92_48_55.jpg │ └── top-K │ │ ├── C21091300154C101_20_8_32_68_161.jpg │ │ ├── C21091300154C101_20_8_32_68_94.jpg │ │ ├── C21091300154C101_20_8_32_80_75.jpg │ │ ├── C21091300154C101_20_8_32_92_116.jpg │ │ ├── C21091300154C101_20_8_40_84_03.jpg │ │ ├── C21091300154C101_20_8_44_32_33.jpg │ │ ├── C21091300154C101_20_8_48_36_107.jpg │ │ ├── C21091300154C101_20_8_48_36_65.jpg │ │ ├── C21091300154C101_20_8_52_104_154.jpg │ │ ├── C21091300154C101_20_8_52_104_183.jpg │ │ ├── C21091300154C101_20_8_52_80_155.jpg │ │ ├── C21091300154C101_20_8_52_80_36.jpg │ │ ├── C21091300154C101_20_8_60_108_109.jpg │ │ ├── C21091300154C101_20_8_60_108_168.jpg │ │ ├── C21091300154C101_20_8_60_108_72.jpg │ │ ├── C21091300154C101_20_8_60_84_35.jpg │ │ ├── C21091300154C101_20_8_64_108_13.jpg │ │ ├── C21091300154C101_20_8_68_48_113.jpg │ │ ├── C21091300154C101_20_8_76_52_189.jpg │ │ └── C21091300154C101_20_8_76_52_99.jpg │ ├── C21091600070C101_20 │ ├── bottom-K │ │ ├── C21091600070C101_20_8_16_76_58.jpg │ │ ├── C21091600070C101_20_8_24_32_172.jpg │ │ ├── C21091600070C101_20_8_28_52_157.jpg │ │ ├── C21091600070C101_20_8_32_64_159.jpg │ │ ├── C21091600070C101_20_8_36_80_180.jpg │ │ ├── C21091600070C101_20_8_40_60_123.jpg │ │ ├── C21091600070C101_20_8_40_72_70.jpg │ │ ├── C21091600070C101_20_8_44_36_41.jpg │ │ ├── C21091600070C101_20_8_44_44_94.jpg │ │ ├── C21091600070C101_20_8_52_88_108.jpg │ │ ├── C21091600070C101_20_8_60_104_179.jpg │ │ ├── C21091600070C101_20_8_60_36_167.jpg │ │ ├── C21091600070C101_20_8_64_40_188.jpg │ │ ├── C21091600070C101_20_8_64_88_89.jpg │ │ ├── C21091600070C101_20_8_72_44_53.jpg │ │ ├── C21091600070C101_20_8_76_84_29.jpg │ │ ├── C21091600070C101_20_8_80_44_125.jpg │ │ ├── C21091600070C101_20_8_84_56_57.jpg │ │ ├── C21091600070C101_20_8_84_64_135.jpg │ │ └── C21091600070C101_20_8_96_80_141.jpg │ └── top-K │ │ ├── C21091600070C101_20_8_12_48_08.jpg │ │ ├── C21091600070C101_20_8_12_48_192.jpg │ │ ├── C21091600070C101_20_8_16_48_52.jpg │ │ ├── C21091600070C101_20_8_52_60_137.jpg │ │ ├── C21091600070C101_20_8_56_72_10.jpg │ │ ├── C21091600070C101_20_8_56_72_153.jpg │ │ ├── C21091600070C101_20_8_56_96_23.jpg │ │ ├── C21091600070C101_20_8_56_96_96.jpg │ │ ├── C21091600070C101_20_8_60_84_30.jpg │ │ ├── C21091600070C101_20_8_72_52_149.jpg │ │ ├── C21091600070C101_20_8_72_52_56.jpg │ │ ├── C21091600070C101_20_8_72_52_85.jpg │ │ ├── C21091600070C101_20_8_72_96_194.jpg │ │ ├── C21091600070C101_20_8_72_96_46.jpg │ │ ├── C21091600070C101_20_8_84_80_178.jpg │ │ ├── C21091600070C101_20_8_84_80_182.jpg │ │ ├── C21091600070C101_20_8_84_88_01.jpg │ │ ├── C21091600070C101_20_8_84_92_195.jpg │ │ ├── C21091600070C101_20_8_92_64_198.jpg │ │ └── C21091600070C101_20_8_92_64_84.jpg │ ├── C21091900194C101_20 │ ├── bottom-K │ │ ├── C21091900194C101_20_8_104_44_138.jpg │ │ ├── C21091900194C101_20_8_16_36_48.jpg │ │ ├── C21091900194C101_20_8_16_80_132.jpg │ │ ├── C21091900194C101_20_8_28_16_169.jpg │ │ ├── C21091900194C101_20_8_28_16_58.jpg │ │ ├── C21091900194C101_20_8_40_68_178.jpg │ │ ├── C21091900194C101_20_8_40_92_186.jpg │ │ ├── C21091900194C101_20_8_40_92_26.jpg │ │ ├── C21091900194C101_20_8_40_92_53.jpg │ │ ├── C21091900194C101_20_8_40_92_54.jpg │ │ ├── C21091900194C101_20_8_44_32_141.jpg │ │ ├── C21091900194C101_20_8_44_32_185.jpg │ │ ├── C21091900194C101_20_8_52_20_32.jpg │ │ ├── C21091900194C101_20_8_52_20_72.jpg │ │ ├── C21091900194C101_20_8_64_4_107.jpg │ │ ├── C21091900194C101_20_8_68_72_20.jpg │ │ ├── C21091900194C101_20_8_72_68_100.jpg │ │ ├── C21091900194C101_20_8_76_56_41.jpg │ │ ├── C21091900194C101_20_8_80_48_130.jpg │ │ └── C21091900194C101_20_8_84_32_56.jpg │ └── top-K │ │ ├── C21091900194C101_20_8_16_84_27.jpg │ │ ├── C21091900194C101_20_8_20_80_177.jpg │ │ ├── C21091900194C101_20_8_56_16_108.jpg │ │ ├── C21091900194C101_20_8_56_16_12.jpg │ │ ├── C21091900194C101_20_8_56_16_55.jpg │ │ ├── C21091900194C101_20_8_56_16_76.jpg │ │ ├── C21091900194C101_20_8_56_92_42.jpg │ │ ├── C21091900194C101_20_8_60_16_70.jpg │ │ ├── C21091900194C101_20_8_60_84_01.jpg │ │ ├── C21091900194C101_20_8_64_80_87.jpg │ │ ├── C21091900194C101_20_8_72_52_83.jpg │ │ ├── C21091900194C101_20_8_72_60_39.jpg │ │ ├── C21091900194C101_20_8_72_76_09.jpg │ │ ├── C21091900194C101_20_8_76_20_68.jpg │ │ ├── C21091900194C101_20_8_76_20_73.jpg │ │ ├── C21091900194C101_20_8_8_56_181.jpg │ │ ├── C21091900194C101_20_8_8_56_40.jpg │ │ ├── C21091900194C101_20_8_92_56_05.jpg │ │ ├── C21091900194C101_20_8_92_56_155.jpg │ │ └── C21091900194C101_20_8_96_80_151.jpg │ ├── C21092100032C101_20 │ ├── bottom-K │ │ ├── C21092100032C101_20_8_12_20_127.jpg │ │ ├── C21092100032C101_20_8_12_44_175.jpg │ │ ├── C21092100032C101_20_8_12_64_193.jpg │ │ ├── C21092100032C101_20_8_24_44_149.jpg │ │ ├── C21092100032C101_20_8_24_76_135.jpg │ │ ├── C21092100032C101_20_8_24_84_116.jpg │ │ ├── C21092100032C101_20_8_24_84_133.jpg │ │ ├── C21092100032C101_20_8_28_56_129.jpg │ │ ├── C21092100032C101_20_8_28_56_161.jpg │ │ ├── C21092100032C101_20_8_44_80_173.jpg │ │ ├── C21092100032C101_20_8_52_72_140.jpg │ │ ├── C21092100032C101_20_8_56_28_132.jpg │ │ ├── C21092100032C101_20_8_56_96_169.jpg │ │ ├── C21092100032C101_20_8_60_24_145.jpg │ │ ├── C21092100032C101_20_8_60_4_35.jpg │ │ ├── C21092100032C101_20_8_60_52_36.jpg │ │ ├── C21092100032C101_20_8_60_52_54.jpg │ │ ├── C21092100032C101_20_8_60_72_168.jpg │ │ ├── C21092100032C101_20_8_68_48_120.jpg │ │ └── C21092100032C101_20_8_72_88_76.jpg │ └── top-K │ │ ├── C21092100032C101_20_8_12_80_122.jpg │ │ ├── C21092100032C101_20_8_12_80_166.jpg │ │ ├── C21092100032C101_20_8_16_88_183.jpg │ │ ├── C21092100032C101_20_8_16_88_66.jpg │ │ ├── C21092100032C101_20_8_20_88_06.jpg │ │ ├── C21092100032C101_20_8_28_60_11.jpg │ │ ├── C21092100032C101_20_8_28_60_43.jpg │ │ ├── C21092100032C101_20_8_32_48_61.jpg │ │ ├── C21092100032C101_20_8_44_100_148.jpg │ │ ├── C21092100032C101_20_8_44_100_185.jpg │ │ ├── C21092100032C101_20_8_48_76_130.jpg │ │ ├── C21092100032C101_20_8_48_76_131.jpg │ │ ├── C21092100032C101_20_8_48_76_181.jpg │ │ ├── C21092100032C101_20_8_4_52_182.jpg │ │ ├── C21092100032C101_20_8_56_84_142.jpg │ │ ├── C21092100032C101_20_8_56_8_151.jpg │ │ ├── C21092100032C101_20_8_60_60_171.jpg │ │ ├── C21092100032C101_20_8_64_48_77.jpg │ │ ├── C21092100032C101_20_8_88_68_50.jpg │ │ └── C21092100032C101_20_8_92_76_172.jpg │ ├── C21092500059C101_20 │ ├── bottom-K │ │ ├── C21092500059C101_20_8_32_60_16.jpg │ │ ├── C21092500059C101_20_8_32_92_175.jpg │ │ ├── C21092500059C101_20_8_44_44_30.jpg │ │ ├── C21092500059C101_20_8_48_48_06.jpg │ │ ├── C21092500059C101_20_8_48_48_50.jpg │ │ ├── C21092500059C101_20_8_48_52_146.jpg │ │ ├── C21092500059C101_20_8_52_16_57.jpg │ │ ├── C21092500059C101_20_8_56_32_138.jpg │ │ ├── C21092500059C101_20_8_56_52_171.jpg │ │ ├── C21092500059C101_20_8_56_84_125.jpg │ │ ├── C21092500059C101_20_8_60_40_167.jpg │ │ ├── C21092500059C101_20_8_64_84_28.jpg │ │ ├── C21092500059C101_20_8_68_52_154.jpg │ │ ├── C21092500059C101_20_8_68_52_79.jpg │ │ ├── C21092500059C101_20_8_72_40_155.jpg │ │ ├── C21092500059C101_20_8_76_68_113.jpg │ │ ├── C21092500059C101_20_8_80_36_47.jpg │ │ ├── C21092500059C101_20_8_84_64_173.jpg │ │ ├── C21092500059C101_20_8_88_40_182.jpg │ │ └── C21092500059C101_20_8_88_40_70.jpg │ └── top-K │ │ ├── C21092500059C101_20_8_44_88_133.jpg │ │ ├── C21092500059C101_20_8_52_72_07.jpg │ │ ├── C21092500059C101_20_8_52_72_139.jpg │ │ ├── C21092500059C101_20_8_60_88_95.jpg │ │ ├── C21092500059C101_20_8_68_80_137.jpg │ │ ├── C21092500059C101_20_8_72_96_26.jpg │ │ ├── C21092500059C101_20_8_76_80_10.jpg │ │ ├── C21092500059C101_20_8_76_80_59.jpg │ │ ├── C21092500059C101_20_8_76_84_58.jpg │ │ ├── C21092500059C101_20_8_80_64_14.jpg │ │ ├── C21092500059C101_20_8_80_84_71.jpg │ │ ├── C21092500059C101_20_8_88_68_100.jpg │ │ ├── C21092500059C101_20_8_88_92_63.jpg │ │ ├── C21092500059C101_20_8_88_92_83.jpg │ │ ├── C21092500059C101_20_8_88_92_88.jpg │ │ ├── C21092500059C101_20_8_92_52_09.jpg │ │ ├── C21092500059C101_20_8_92_52_179.jpg │ │ ├── C21092500059C101_20_8_92_52_72.jpg │ │ ├── C21092500059C101_20_8_92_52_94.jpg │ │ └── C21092500059C101_20_8_96_68_29.jpg │ ├── C21092500244C101_20 │ ├── bottom-K │ │ ├── C21092500244C101_20_8_104_36_77.jpg │ │ ├── C21092500244C101_20_8_20_32_168.jpg │ │ ├── C21092500244C101_20_8_24_72_133.jpg │ │ ├── C21092500244C101_20_8_28_12_29.jpg │ │ ├── C21092500244C101_20_8_36_84_59.jpg │ │ ├── C21092500244C101_20_8_44_76_98.jpg │ │ ├── C21092500244C101_20_8_48_100_127.jpg │ │ ├── C21092500244C101_20_8_48_92_148.jpg │ │ ├── C21092500244C101_20_8_48_92_190.jpg │ │ ├── C21092500244C101_20_8_52_12_80.jpg │ │ ├── C21092500244C101_20_8_52_12_82.jpg │ │ ├── C21092500244C101_20_8_52_28_159.jpg │ │ ├── C21092500244C101_20_8_76_44_139.jpg │ │ ├── C21092500244C101_20_8_76_60_58.jpg │ │ ├── C21092500244C101_20_8_76_88_105.jpg │ │ ├── C21092500244C101_20_8_76_88_70.jpg │ │ ├── C21092500244C101_20_8_76_96_102.jpg │ │ ├── C21092500244C101_20_8_88_48_119.jpg │ │ ├── C21092500244C101_20_8_88_48_38.jpg │ │ └── C21092500244C101_20_8_88_68_26.jpg │ └── top-K │ │ ├── C21092500244C101_20_8_20_36_35.jpg │ │ ├── C21092500244C101_20_8_24_44_104.jpg │ │ ├── C21092500244C101_20_8_24_80_71.jpg │ │ ├── C21092500244C101_20_8_32_88_01.jpg │ │ ├── C21092500244C101_20_8_32_88_141.jpg │ │ ├── C21092500244C101_20_8_44_20_16.jpg │ │ ├── C21092500244C101_20_8_52_32_177.jpg │ │ ├── C21092500244C101_20_8_52_92_17.jpg │ │ ├── C21092500244C101_20_8_52_92_63.jpg │ │ ├── C21092500244C101_20_8_52_92_97.jpg │ │ ├── C21092500244C101_20_8_72_28_118.jpg │ │ ├── C21092500244C101_20_8_72_28_137.jpg │ │ ├── C21092500244C101_20_8_72_28_197.jpg │ │ ├── C21092500244C101_20_8_72_92_05.jpg │ │ ├── C21092500244C101_20_8_72_92_169.jpg │ │ ├── C21092500244C101_20_8_76_36_12.jpg │ │ ├── C21092500244C101_20_8_76_36_179.jpg │ │ ├── C21092500244C101_20_8_76_8_08.jpg │ │ ├── C21092500244C101_20_8_76_8_13.jpg │ │ └── C21092500244C101_20_8_96_44_76.jpg │ └── C21092800126C101_20 │ ├── bottom-K │ ├── C21092800126C101_20_8_20_52_132.jpg │ ├── C21092800126C101_20_8_24_52_162.jpg │ ├── C21092800126C101_20_8_24_56_99.jpg │ ├── C21092800126C101_20_8_24_72_57.jpg │ ├── C21092800126C101_20_8_28_48_184.jpg │ ├── C21092800126C101_20_8_28_48_90.jpg │ ├── C21092800126C101_20_8_32_28_63.jpg │ ├── C21092800126C101_20_8_32_40_140.jpg │ ├── C21092800126C101_20_8_32_68_142.jpg │ ├── C21092800126C101_20_8_36_40_30.jpg │ ├── C21092800126C101_20_8_40_28_39.jpg │ ├── C21092800126C101_20_8_40_88_198.jpg │ ├── C21092800126C101_20_8_44_20_156.jpg │ ├── C21092800126C101_20_8_44_20_41.jpg │ ├── C21092800126C101_20_8_48_24_199.jpg │ ├── C21092800126C101_20_8_48_44_173.jpg │ ├── C21092800126C101_20_8_52_20_168.jpg │ ├── C21092800126C101_20_8_52_32_153.jpg │ ├── C21092800126C101_20_8_68_20_137.jpg │ └── C21092800126C101_20_8_88_64_191.jpg │ └── top-K │ ├── C21092800126C101_20_8_24_20_166.jpg │ ├── C21092800126C101_20_8_24_20_66.jpg │ ├── C21092800126C101_20_8_32_44_20.jpg │ ├── C21092800126C101_20_8_40_40_05.jpg │ ├── C21092800126C101_20_8_40_40_110.jpg │ ├── C21092800126C101_20_8_40_40_38.jpg │ ├── C21092800126C101_20_8_48_88_04.jpg │ ├── C21092800126C101_20_8_48_88_200.jpg │ ├── C21092800126C101_20_8_60_88_06.jpg │ ├── C21092800126C101_20_8_60_88_136.jpg │ ├── C21092800126C101_20_8_60_88_47.jpg │ ├── C21092800126C101_20_8_64_76_146.jpg │ ├── C21092800126C101_20_8_64_76_151.jpg │ ├── C21092800126C101_20_8_64_76_50.jpg │ ├── C21092800126C101_20_8_68_40_01.jpg │ ├── C21092800126C101_20_8_68_40_12.jpg │ ├── C21092800126C101_20_8_80_56_158.jpg │ ├── C21092800126C101_20_8_80_56_190.jpg │ ├── C21092800126C101_20_8_80_56_27.jpg │ └── C21092800126C101_20_8_96_52_177.jpg ├── data_csv └── fold_train.csv ├── model ├── DiffPool.py ├── GCNConv.py ├── GraphAttention.py ├── GraphConv.py ├── GraphSAGE.py ├── SAGPool.py ├── __init__.py ├── __pycache__ │ ├── DiffPool.cpython-37.pyc │ ├── DiffPool.cpython-38.pyc │ ├── GCNConv.cpython-38.pyc │ ├── GraphAttention.cpython-37.pyc │ ├── GraphAttention.cpython-38.pyc │ ├── GraphConv.cpython-38.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── adni_model_GA_DIFFPOOL.cpython-37.pyc │ ├── init.cpython-38.pyc │ ├── model_GAT.cpython-38.pyc │ ├── model_GA_DIFFPOOL.cpython-38.pyc │ ├── model_GCN_DIFFPOOL.cpython-38.pyc │ └── model_GraphConv_DIFFPOOL.cpython-38.pyc ├── graph.pkl ├── init.py ├── model_GAT.py ├── model_GA_DIFFPOOL.py ├── model_GCN_DIFFPOOL.py ├── model_GraphConv_DIFFPOOL.py └── model_dgl.py ├── net_utils.py ├── net_utils_for_test.py ├── qualitative results.pdf ├── requirements.txt ├── test.py ├── tools.py └── train.py /GraphDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/GraphDataset.py -------------------------------------------------------------------------------- /Patch_classification/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Patch_classification/dataset.py -------------------------------------------------------------------------------- /Patch_classification/generate_distill_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Patch_classification/generate_distill_submission.py -------------------------------------------------------------------------------- /Patch_classification/generate_soft_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Patch_classification/generate_soft_labels.py -------------------------------------------------------------------------------- /Patch_classification/loss_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Patch_classification/loss_function.py -------------------------------------------------------------------------------- /Patch_classification/lrs_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Patch_classification/lrs_scheduler.py -------------------------------------------------------------------------------- /Patch_classification/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Patch_classification/models.py -------------------------------------------------------------------------------- /Patch_classification/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Patch_classification/requirements.txt -------------------------------------------------------------------------------- /Patch_classification/seresnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Patch_classification/seresnext.py -------------------------------------------------------------------------------- /Patch_classification/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Patch_classification/train.py -------------------------------------------------------------------------------- /Patch_classification/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Patch_classification/util.py -------------------------------------------------------------------------------- /Patch_classification/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Patch_classification/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/README.md -------------------------------------------------------------------------------- /Suspicious_cell_detection/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/augmentation.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/build_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/build_network.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/cfg.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/create_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/create_samples.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/data_loader.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/evaluation.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/README.md -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/build.sh -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/nms/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/nms/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/gpu_nms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/nms/gpu_nms.cpp -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/gpu_nms.cpython-37m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/nms/gpu_nms.cpython-37m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/gpu_nms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/nms/gpu_nms.hpp -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/gpu_nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/nms/gpu_nms.pyx -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/nms_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/nms/nms_kernel.cu -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/nums_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/nms/nums_py.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/nums_py1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/nms/nums_py1.c -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/nums_py1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/nms/nums_py1.pyx -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/nums_py2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/nms/nums_py2.c -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/nums_py2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/nms/nums_py2.pyx -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/setup1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/nms/setup1.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/nms/setup2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/nms/setup2.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/setup3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/setup3.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/lib/test_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/lib/test_num.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/losses.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/losses_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/losses_coco.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/models/.DS_Store -------------------------------------------------------------------------------- /Suspicious_cell_detection/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Suspicious_cell_detection/models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Suspicious_cell_detection/models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Suspicious_cell_detection/models/__pycache__/anchors.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/models/__pycache__/anchors.cpython-36.pyc -------------------------------------------------------------------------------- /Suspicious_cell_detection/models/__pycache__/anchors.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/models/__pycache__/anchors.cpython-37.pyc -------------------------------------------------------------------------------- /Suspicious_cell_detection/models/__pycache__/basic_block.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/models/__pycache__/basic_block.cpython-36.pyc -------------------------------------------------------------------------------- /Suspicious_cell_detection/models/__pycache__/basic_block.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/models/__pycache__/basic_block.cpython-37.pyc -------------------------------------------------------------------------------- /Suspicious_cell_detection/models/__pycache__/retinanet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/models/__pycache__/retinanet.cpython-36.pyc -------------------------------------------------------------------------------- /Suspicious_cell_detection/models/__pycache__/retinanet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/models/__pycache__/retinanet.cpython-37.pyc -------------------------------------------------------------------------------- /Suspicious_cell_detection/models/anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/models/anchors.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/models/basic_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/models/basic_block.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/models/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/models/retinanet.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/train.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/Suspicious_cell_detection/util.py -------------------------------------------------------------------------------- /Suspicious_cell_detection/val.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/Sample of Image Tiles/8_12_52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of Image Tiles/8_12_52.jpg -------------------------------------------------------------------------------- /data/Sample of Image Tiles/8_16_68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of Image Tiles/8_16_68.jpg -------------------------------------------------------------------------------- /data/Sample of Image Tiles/8_48_56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of Image Tiles/8_48_56.jpg -------------------------------------------------------------------------------- /data/Sample of Image Tiles/8_52_100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of Image Tiles/8_52_100.jpg -------------------------------------------------------------------------------- /data/Sample of Image Tiles/8_88_64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of Image Tiles/8_88_64.jpg -------------------------------------------------------------------------------- /data/Sample of graphs/bottom-K/C21091300154C101_20/fcmatrix_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/bottom-K/C21091300154C101_20/fcmatrix_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/bottom-K/C21091300154C101_20/feature_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/bottom-K/C21091300154C101_20/feature_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/bottom-K/C21091600070C101_20/fcmatrix_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/bottom-K/C21091600070C101_20/fcmatrix_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/bottom-K/C21091600070C101_20/feature_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/bottom-K/C21091600070C101_20/feature_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/bottom-K/C21091900194C101_20/fcmatrix_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/bottom-K/C21091900194C101_20/fcmatrix_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/bottom-K/C21091900194C101_20/feature_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/bottom-K/C21091900194C101_20/feature_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/bottom-K/C21092100032C101_20/fcmatrix_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/bottom-K/C21092100032C101_20/fcmatrix_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/bottom-K/C21092100032C101_20/feature_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/bottom-K/C21092100032C101_20/feature_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/bottom-K/C21092500059C101_20/fcmatrix_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/bottom-K/C21092500059C101_20/fcmatrix_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/bottom-K/C21092500059C101_20/feature_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/bottom-K/C21092500059C101_20/feature_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/bottom-K/C21092500244C101_20/fcmatrix_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/bottom-K/C21092500244C101_20/fcmatrix_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/bottom-K/C21092500244C101_20/feature_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/bottom-K/C21092500244C101_20/feature_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/bottom-K/C21092800126C101_20/fcmatrix_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/bottom-K/C21092800126C101_20/fcmatrix_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/bottom-K/C21092800126C101_20/feature_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/bottom-K/C21092800126C101_20/feature_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/top-K/C21091300154C101_20/fcmatrix_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/top-K/C21091300154C101_20/fcmatrix_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/top-K/C21091300154C101_20/feature_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/top-K/C21091300154C101_20/feature_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/top-K/C21091600070C101_20/fcmatrix_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/top-K/C21091600070C101_20/fcmatrix_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/top-K/C21091600070C101_20/feature_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/top-K/C21091600070C101_20/feature_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/top-K/C21091900194C101_20/fcmatrix_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/top-K/C21091900194C101_20/fcmatrix_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/top-K/C21091900194C101_20/feature_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/top-K/C21091900194C101_20/feature_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/top-K/C21092100032C101_20/fcmatrix_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/top-K/C21092100032C101_20/fcmatrix_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/top-K/C21092100032C101_20/feature_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/top-K/C21092100032C101_20/feature_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/top-K/C21092500059C101_20/fcmatrix_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/top-K/C21092500059C101_20/fcmatrix_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/top-K/C21092500059C101_20/feature_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/top-K/C21092500059C101_20/feature_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/top-K/C21092500244C101_20/fcmatrix_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/top-K/C21092500244C101_20/fcmatrix_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/top-K/C21092500244C101_20/feature_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/top-K/C21092500244C101_20/feature_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/top-K/C21092800126C101_20/fcmatrix_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/top-K/C21092800126C101_20/fcmatrix_20.npy -------------------------------------------------------------------------------- /data/Sample of graphs/top-K/C21092800126C101_20/feature_20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of graphs/top-K/C21092800126C101_20/feature_20.npy -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_16_60_163.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_16_60_163.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_24_68_121.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_24_68_121.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_24_68_133.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_24_68_133.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_36_56_151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_36_56_151.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_44_40_188.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_44_40_188.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_44_64_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_44_64_07.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_44_80_66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_44_80_66.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_44_92_40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_44_92_40.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_48_100_149.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_48_100_149.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_48_100_69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_48_100_69.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_48_32_128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_48_32_128.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_48_44_63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_48_44_63.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_48_52_174.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_48_52_174.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_60_72_73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_60_72_73.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_80_72_74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_80_72_74.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_80_80_97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_80_80_97.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_80_88_147.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_80_88_147.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_80_88_50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_80_88_50.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_92_48_175.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_92_48_175.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_92_48_55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/bottom-K/C21091300154C101_20_8_92_48_55.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_32_68_161.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_32_68_161.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_32_68_94.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_32_68_94.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_32_80_75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_32_80_75.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_32_92_116.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_32_92_116.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_40_84_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_40_84_03.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_44_32_33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_44_32_33.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_48_36_107.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_48_36_107.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_48_36_65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_48_36_65.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_52_104_154.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_52_104_154.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_52_104_183.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_52_104_183.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_52_80_155.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_52_80_155.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_52_80_36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_52_80_36.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_60_108_109.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_60_108_109.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_60_108_168.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_60_108_168.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_60_108_72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_60_108_72.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_60_84_35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_60_84_35.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_64_108_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_64_108_13.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_68_48_113.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_68_48_113.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_76_52_189.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_76_52_189.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_76_52_99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091300154C101_20/top-K/C21091300154C101_20_8_76_52_99.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_16_76_58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_16_76_58.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_24_32_172.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_24_32_172.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_28_52_157.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_28_52_157.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_32_64_159.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_32_64_159.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_36_80_180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_36_80_180.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_40_60_123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_40_60_123.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_40_72_70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_40_72_70.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_44_36_41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_44_36_41.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_44_44_94.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_44_44_94.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_52_88_108.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_52_88_108.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_60_104_179.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_60_104_179.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_60_36_167.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_60_36_167.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_64_40_188.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_64_40_188.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_64_88_89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_64_88_89.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_72_44_53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_72_44_53.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_76_84_29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_76_84_29.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_80_44_125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_80_44_125.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_84_56_57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_84_56_57.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_84_64_135.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_84_64_135.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_96_80_141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/bottom-K/C21091600070C101_20_8_96_80_141.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_12_48_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_12_48_08.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_12_48_192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_12_48_192.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_16_48_52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_16_48_52.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_52_60_137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_52_60_137.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_56_72_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_56_72_10.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_56_72_153.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_56_72_153.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_56_96_23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_56_96_23.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_56_96_96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_56_96_96.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_60_84_30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_60_84_30.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_72_52_149.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_72_52_149.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_72_52_56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_72_52_56.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_72_52_85.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_72_52_85.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_72_96_194.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_72_96_194.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_72_96_46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_72_96_46.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_84_80_178.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_84_80_178.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_84_80_182.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_84_80_182.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_84_88_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_84_88_01.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_84_92_195.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_84_92_195.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_92_64_198.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_92_64_198.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_92_64_84.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091600070C101_20/top-K/C21091600070C101_20_8_92_64_84.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_104_44_138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_104_44_138.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_16_36_48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_16_36_48.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_16_80_132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_16_80_132.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_28_16_169.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_28_16_169.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_28_16_58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_28_16_58.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_40_68_178.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_40_68_178.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_40_92_186.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_40_92_186.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_40_92_26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_40_92_26.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_40_92_53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_40_92_53.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_40_92_54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_40_92_54.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_44_32_141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_44_32_141.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_44_32_185.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_44_32_185.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_52_20_32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_52_20_32.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_52_20_72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_52_20_72.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_64_4_107.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_64_4_107.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_68_72_20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_68_72_20.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_72_68_100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_72_68_100.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_76_56_41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_76_56_41.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_80_48_130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_80_48_130.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_84_32_56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/bottom-K/C21091900194C101_20_8_84_32_56.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_16_84_27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_16_84_27.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_20_80_177.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_20_80_177.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_56_16_108.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_56_16_108.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_56_16_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_56_16_12.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_56_16_55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_56_16_55.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_56_16_76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_56_16_76.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_56_92_42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_56_92_42.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_60_16_70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_60_16_70.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_60_84_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_60_84_01.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_64_80_87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_64_80_87.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_72_52_83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_72_52_83.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_72_60_39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_72_60_39.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_72_76_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_72_76_09.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_76_20_68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_76_20_68.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_76_20_73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_76_20_73.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_8_56_181.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_8_56_181.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_8_56_40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_8_56_40.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_92_56_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_92_56_05.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_92_56_155.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_92_56_155.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_96_80_151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21091900194C101_20/top-K/C21091900194C101_20_8_96_80_151.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_12_20_127.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_12_20_127.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_12_44_175.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_12_44_175.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_12_64_193.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_12_64_193.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_24_44_149.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_24_44_149.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_24_76_135.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_24_76_135.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_24_84_116.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_24_84_116.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_24_84_133.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_24_84_133.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_28_56_129.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_28_56_129.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_28_56_161.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_28_56_161.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_44_80_173.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_44_80_173.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_52_72_140.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_52_72_140.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_56_28_132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_56_28_132.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_56_96_169.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_56_96_169.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_60_24_145.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_60_24_145.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_60_4_35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_60_4_35.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_60_52_36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_60_52_36.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_60_52_54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_60_52_54.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_60_72_168.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_60_72_168.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_68_48_120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_68_48_120.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_72_88_76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/bottom-K/C21092100032C101_20_8_72_88_76.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_12_80_122.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_12_80_122.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_12_80_166.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_12_80_166.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_16_88_183.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_16_88_183.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_16_88_66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_16_88_66.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_20_88_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_20_88_06.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_28_60_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_28_60_11.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_28_60_43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_28_60_43.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_32_48_61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_32_48_61.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_44_100_148.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_44_100_148.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_44_100_185.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_44_100_185.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_48_76_130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_48_76_130.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_48_76_131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_48_76_131.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_48_76_181.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_48_76_181.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_4_52_182.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_4_52_182.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_56_84_142.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_56_84_142.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_56_8_151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_56_8_151.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_60_60_171.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_60_60_171.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_64_48_77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_64_48_77.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_88_68_50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_88_68_50.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_92_76_172.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092100032C101_20/top-K/C21092100032C101_20_8_92_76_172.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_32_60_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_32_60_16.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_32_92_175.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_32_92_175.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_44_44_30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_44_44_30.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_48_48_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_48_48_06.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_48_48_50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_48_48_50.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_48_52_146.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_48_52_146.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_52_16_57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_52_16_57.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_56_32_138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_56_32_138.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_56_52_171.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_56_52_171.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_56_84_125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_56_84_125.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_60_40_167.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_60_40_167.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_64_84_28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_64_84_28.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_68_52_154.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_68_52_154.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_68_52_79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_68_52_79.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_72_40_155.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_72_40_155.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_76_68_113.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_76_68_113.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_80_36_47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_80_36_47.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_84_64_173.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_84_64_173.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_88_40_182.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_88_40_182.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_88_40_70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/bottom-K/C21092500059C101_20_8_88_40_70.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_44_88_133.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_44_88_133.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_52_72_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_52_72_07.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_52_72_139.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_52_72_139.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_60_88_95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_60_88_95.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_68_80_137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_68_80_137.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_72_96_26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_72_96_26.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_76_80_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_76_80_10.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_76_80_59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_76_80_59.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_76_84_58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_76_84_58.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_80_64_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_80_64_14.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_80_84_71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_80_84_71.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_88_68_100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_88_68_100.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_88_92_63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_88_92_63.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_88_92_83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_88_92_83.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_88_92_88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_88_92_88.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_92_52_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_92_52_09.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_92_52_179.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_92_52_179.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_92_52_72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_92_52_72.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_92_52_94.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_92_52_94.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_96_68_29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500059C101_20/top-K/C21092500059C101_20_8_96_68_29.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_104_36_77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_104_36_77.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_20_32_168.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_20_32_168.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_24_72_133.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_24_72_133.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_28_12_29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_28_12_29.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_36_84_59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_36_84_59.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_44_76_98.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_44_76_98.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_48_100_127.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_48_100_127.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_48_92_148.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_48_92_148.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_48_92_190.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_48_92_190.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_52_12_80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_52_12_80.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_52_12_82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_52_12_82.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_52_28_159.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_52_28_159.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_76_44_139.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_76_44_139.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_76_60_58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_76_60_58.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_76_88_105.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_76_88_105.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_76_88_70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_76_88_70.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_76_96_102.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_76_96_102.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_88_48_119.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_88_48_119.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_88_48_38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_88_48_38.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_88_68_26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/bottom-K/C21092500244C101_20_8_88_68_26.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_20_36_35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_20_36_35.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_24_44_104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_24_44_104.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_24_80_71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_24_80_71.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_32_88_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_32_88_01.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_32_88_141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_32_88_141.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_44_20_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_44_20_16.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_52_32_177.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_52_32_177.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_52_92_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_52_92_17.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_52_92_63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_52_92_63.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_52_92_97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_52_92_97.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_72_28_118.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_72_28_118.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_72_28_137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_72_28_137.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_72_28_197.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_72_28_197.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_72_92_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_72_92_05.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_72_92_169.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_72_92_169.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_76_36_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_76_36_12.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_76_36_179.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_76_36_179.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_76_8_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_76_8_08.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_76_8_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_76_8_13.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_96_44_76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092500244C101_20/top-K/C21092500244C101_20_8_96_44_76.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_20_52_132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_20_52_132.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_24_52_162.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_24_52_162.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_24_56_99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_24_56_99.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_24_72_57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_24_72_57.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_28_48_184.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_28_48_184.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_28_48_90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_28_48_90.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_32_28_63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_32_28_63.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_32_40_140.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_32_40_140.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_32_68_142.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_32_68_142.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_36_40_30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_36_40_30.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_40_28_39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_40_28_39.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_40_88_198.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_40_88_198.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_44_20_156.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_44_20_156.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_44_20_41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_44_20_41.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_48_24_199.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_48_24_199.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_48_44_173.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_48_44_173.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_52_20_168.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_52_20_168.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_52_32_153.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_52_32_153.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_68_20_137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_68_20_137.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_88_64_191.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/bottom-K/C21092800126C101_20_8_88_64_191.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_24_20_166.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_24_20_166.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_24_20_66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_24_20_66.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_32_44_20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_32_44_20.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_40_40_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_40_40_05.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_40_40_110.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_40_40_110.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_40_40_38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_40_40_38.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_48_88_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_48_88_04.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_48_88_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_48_88_200.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_60_88_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_60_88_06.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_60_88_136.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_60_88_136.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_60_88_47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_60_88_47.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_64_76_146.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_64_76_146.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_64_76_151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_64_76_151.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_64_76_50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_64_76_50.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_68_40_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_68_40_01.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_68_40_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_68_40_12.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_80_56_158.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_80_56_158.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_80_56_190.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_80_56_190.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_80_56_27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_80_56_27.jpg -------------------------------------------------------------------------------- /data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_96_52_177.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data/Sample of patches/C21092800126C101_20/top-K/C21092800126C101_20_8_96_52_177.jpg -------------------------------------------------------------------------------- /data_csv/fold_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/data_csv/fold_train.csv -------------------------------------------------------------------------------- /model/DiffPool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/DiffPool.py -------------------------------------------------------------------------------- /model/GCNConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/GCNConv.py -------------------------------------------------------------------------------- /model/GraphAttention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/GraphAttention.py -------------------------------------------------------------------------------- /model/GraphConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/GraphConv.py -------------------------------------------------------------------------------- /model/GraphSAGE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/GraphSAGE.py -------------------------------------------------------------------------------- /model/SAGPool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/SAGPool.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/__pycache__/DiffPool.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/__pycache__/DiffPool.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/DiffPool.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/__pycache__/DiffPool.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/GCNConv.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/__pycache__/GCNConv.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/GraphAttention.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/__pycache__/GraphAttention.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/GraphAttention.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/__pycache__/GraphAttention.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/GraphConv.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/__pycache__/GraphConv.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/adni_model_GA_DIFFPOOL.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/__pycache__/adni_model_GA_DIFFPOOL.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/init.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/__pycache__/init.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/model_GAT.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/__pycache__/model_GAT.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/model_GA_DIFFPOOL.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/__pycache__/model_GA_DIFFPOOL.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/model_GCN_DIFFPOOL.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/__pycache__/model_GCN_DIFFPOOL.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/model_GraphConv_DIFFPOOL.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/__pycache__/model_GraphConv_DIFFPOOL.cpython-38.pyc -------------------------------------------------------------------------------- /model/graph.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/graph.pkl -------------------------------------------------------------------------------- /model/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/init.py -------------------------------------------------------------------------------- /model/model_GAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/model_GAT.py -------------------------------------------------------------------------------- /model/model_GA_DIFFPOOL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/model_GA_DIFFPOOL.py -------------------------------------------------------------------------------- /model/model_GCN_DIFFPOOL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/model_GCN_DIFFPOOL.py -------------------------------------------------------------------------------- /model/model_GraphConv_DIFFPOOL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/model_GraphConv_DIFFPOOL.py -------------------------------------------------------------------------------- /model/model_dgl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/model/model_dgl.py -------------------------------------------------------------------------------- /net_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/net_utils.py -------------------------------------------------------------------------------- /net_utils_for_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/net_utils_for_test.py -------------------------------------------------------------------------------- /qualitative results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/qualitative results.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/test.py -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/tools.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangXin1997/MICCAI-2022/HEAD/train.py --------------------------------------------------------------------------------