└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # DGCNet 2 | 3 | Pytorch implementation of BMVC 2019 paper [Dual Graph Convolutional Network for Semantic Segmentation](https://arxiv.org/abs/1909.06121). 4 | 5 | We have integrated DGCNet into the code base of [GALD-DGCNet](https://github.com/lxtGH/GALD-DGCNet). 6 | 7 | 8 | 9 | 10 | # Bibtex 11 | Please refer to our paper for more details. 12 | If you find the code is usefull, please cite our paper. 13 | 14 | ``` 15 | @inproceedings{zhangli_dgcn 16 | title={Dual Graph Convolutional Network for Semantic Segmentation}, 17 | author={Zhang, Li(*) and Li, Xiangtai(*) and Arnab, Anurag and Yang, Kuiyuan and Tong, Yunhai and Torr, Philip HS}, 18 | booktitle={BMVC2019}, 19 | } 20 | ``` 21 | 22 | ``` 23 | @inproceedings{xiangtl_gald 24 | title={Global Aggregation then Local Distribution in Fully Convolutional Networks}, 25 | author={Li, Xiangtai and Zhang, Li and You, Ansheng and Yang, Maoke and Yang, Kuiyuan and Tong, Yunhai}, 26 | booktitle={BMVC2019}, 27 | } 28 | ``` 29 | 30 | 31 | --------------------------------------------------------------------------------