├── README.md ├── Training_gcn3D_AV_keras_generator.py ├── Training_gcn3D_AV_keras_generator.sh ├── data └── Orient │ └── DemoRightUpper05CTPA │ └── right │ ├── Label.npy │ ├── graph.npy │ ├── ind.npy │ ├── object.xml │ ├── patch.npy │ └── posi.npy ├── fig ├── AV_3D.png ├── AV_vessel_3D.png └── CT_3D.png ├── model_predicting.py ├── model_predicting.sh ├── requirements.txt └── utils ├── ArteryVein_data.py ├── TrainValTensorBoard.py ├── layer_GCN.py └── models.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/README.md -------------------------------------------------------------------------------- /Training_gcn3D_AV_keras_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/Training_gcn3D_AV_keras_generator.py -------------------------------------------------------------------------------- /Training_gcn3D_AV_keras_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/Training_gcn3D_AV_keras_generator.sh -------------------------------------------------------------------------------- /data/Orient/DemoRightUpper05CTPA/right/Label.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/data/Orient/DemoRightUpper05CTPA/right/Label.npy -------------------------------------------------------------------------------- /data/Orient/DemoRightUpper05CTPA/right/graph.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/data/Orient/DemoRightUpper05CTPA/right/graph.npy -------------------------------------------------------------------------------- /data/Orient/DemoRightUpper05CTPA/right/ind.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/data/Orient/DemoRightUpper05CTPA/right/ind.npy -------------------------------------------------------------------------------- /data/Orient/DemoRightUpper05CTPA/right/object.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/data/Orient/DemoRightUpper05CTPA/right/object.xml -------------------------------------------------------------------------------- /data/Orient/DemoRightUpper05CTPA/right/patch.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/data/Orient/DemoRightUpper05CTPA/right/patch.npy -------------------------------------------------------------------------------- /data/Orient/DemoRightUpper05CTPA/right/posi.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/data/Orient/DemoRightUpper05CTPA/right/posi.npy -------------------------------------------------------------------------------- /fig/AV_3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/fig/AV_3D.png -------------------------------------------------------------------------------- /fig/AV_vessel_3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/fig/AV_vessel_3D.png -------------------------------------------------------------------------------- /fig/CT_3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/fig/CT_3D.png -------------------------------------------------------------------------------- /model_predicting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/model_predicting.py -------------------------------------------------------------------------------- /model_predicting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/model_predicting.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/ArteryVein_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/utils/ArteryVein_data.py -------------------------------------------------------------------------------- /utils/TrainValTensorBoard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/utils/TrainValTensorBoard.py -------------------------------------------------------------------------------- /utils/layer_GCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/utils/layer_GCN.py -------------------------------------------------------------------------------- /utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhiwei-Zhai/Linking-CNN-GCN/HEAD/utils/models.py --------------------------------------------------------------------------------