├── Framework.png ├── README.md ├── config ├── data │ ├── StructSeg │ │ ├── readme.md │ │ ├── test_image.txt │ │ ├── test_label.txt │ │ ├── train_image.txt │ │ ├── train_label.txt │ │ ├── valid_image.txt │ │ └── valid_label.txt │ └── TCIA-Pancreas │ │ ├── test_image.txt │ │ ├── test_label.txt │ │ ├── train_image.txt │ │ ├── train_label.txt │ │ ├── valid_image.txt │ │ └── valid_label.txt ├── test │ ├── readme.md │ ├── test_c2f_han_detection.txt │ └── test_c2f_pancreas_detection.txt └── train │ ├── readme.md │ ├── train_position_han_coarse.txt │ ├── train_position_han_fine.txt │ ├── train_position_pancreas_coarse.txt │ └── train_position_pancreas_fine.txt ├── data └── readme.md ├── data_process └── data_process_func.py ├── dataloaders ├── Position_dataloader.py ├── Position_detection_dataloader.py └── __init__.py ├── detection ├── c2f_detection.py ├── detection_functions.py └── readme.md ├── networks ├── NetFactory.py ├── Pnet.py ├── Pnet_2.py ├── Pnet_3.py └── layers.py ├── train └── train_position.py ├── util └── parse_config.py └── weights ├── Pnet └── readme.md └── Pnet_2 └── readme.md /Framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/Framework.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/README.md -------------------------------------------------------------------------------- /config/data/StructSeg/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/data/StructSeg/test_image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/data/StructSeg/test_image.txt -------------------------------------------------------------------------------- /config/data/StructSeg/test_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/data/StructSeg/test_label.txt -------------------------------------------------------------------------------- /config/data/StructSeg/train_image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/data/StructSeg/train_image.txt -------------------------------------------------------------------------------- /config/data/StructSeg/train_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/data/StructSeg/train_label.txt -------------------------------------------------------------------------------- /config/data/StructSeg/valid_image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/data/StructSeg/valid_image.txt -------------------------------------------------------------------------------- /config/data/StructSeg/valid_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/data/StructSeg/valid_label.txt -------------------------------------------------------------------------------- /config/data/TCIA-Pancreas/test_image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/data/TCIA-Pancreas/test_image.txt -------------------------------------------------------------------------------- /config/data/TCIA-Pancreas/test_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/data/TCIA-Pancreas/test_label.txt -------------------------------------------------------------------------------- /config/data/TCIA-Pancreas/train_image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/data/TCIA-Pancreas/train_image.txt -------------------------------------------------------------------------------- /config/data/TCIA-Pancreas/train_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/data/TCIA-Pancreas/train_label.txt -------------------------------------------------------------------------------- /config/data/TCIA-Pancreas/valid_image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/data/TCIA-Pancreas/valid_image.txt -------------------------------------------------------------------------------- /config/data/TCIA-Pancreas/valid_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/data/TCIA-Pancreas/valid_label.txt -------------------------------------------------------------------------------- /config/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/test/readme.md -------------------------------------------------------------------------------- /config/test/test_c2f_han_detection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/test/test_c2f_han_detection.txt -------------------------------------------------------------------------------- /config/test/test_c2f_pancreas_detection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/test/test_c2f_pancreas_detection.txt -------------------------------------------------------------------------------- /config/train/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/train/readme.md -------------------------------------------------------------------------------- /config/train/train_position_han_coarse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/train/train_position_han_coarse.txt -------------------------------------------------------------------------------- /config/train/train_position_han_fine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/train/train_position_han_fine.txt -------------------------------------------------------------------------------- /config/train/train_position_pancreas_coarse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/train/train_position_pancreas_coarse.txt -------------------------------------------------------------------------------- /config/train/train_position_pancreas_fine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/config/train/train_position_pancreas_fine.txt -------------------------------------------------------------------------------- /data/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/data/readme.md -------------------------------------------------------------------------------- /data_process/data_process_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/data_process/data_process_func.py -------------------------------------------------------------------------------- /dataloaders/Position_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/dataloaders/Position_dataloader.py -------------------------------------------------------------------------------- /dataloaders/Position_detection_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/dataloaders/Position_detection_dataloader.py -------------------------------------------------------------------------------- /dataloaders/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /detection/c2f_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/detection/c2f_detection.py -------------------------------------------------------------------------------- /detection/detection_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/detection/detection_functions.py -------------------------------------------------------------------------------- /detection/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /networks/NetFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/networks/NetFactory.py -------------------------------------------------------------------------------- /networks/Pnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/networks/Pnet.py -------------------------------------------------------------------------------- /networks/Pnet_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/networks/Pnet_2.py -------------------------------------------------------------------------------- /networks/Pnet_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/networks/Pnet_3.py -------------------------------------------------------------------------------- /networks/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/networks/layers.py -------------------------------------------------------------------------------- /train/train_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/train/train_position.py -------------------------------------------------------------------------------- /util/parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/util/parse_config.py -------------------------------------------------------------------------------- /weights/Pnet/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /weights/Pnet_2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LWHYC/RPR-Loc/HEAD/weights/Pnet_2/readme.md --------------------------------------------------------------------------------