├── .gitattributes ├── LICENSE ├── README.md ├── dataset.py ├── finetune.sh ├── model.py ├── modules ├── Attention.py ├── DSNet.py ├── RegionNorm.py ├── ValidMigration.py └── deform_conv.py ├── paper └── TIP-2021-Dynamic Selection Network for Image Inpainting.pdf ├── run.py ├── test.sh ├── train.sh └── utils └── io.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/README.md -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/dataset.py -------------------------------------------------------------------------------- /finetune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/finetune.sh -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/model.py -------------------------------------------------------------------------------- /modules/Attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/modules/Attention.py -------------------------------------------------------------------------------- /modules/DSNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/modules/DSNet.py -------------------------------------------------------------------------------- /modules/RegionNorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/modules/RegionNorm.py -------------------------------------------------------------------------------- /modules/ValidMigration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/modules/ValidMigration.py -------------------------------------------------------------------------------- /modules/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/modules/deform_conv.py -------------------------------------------------------------------------------- /paper/TIP-2021-Dynamic Selection Network for Image Inpainting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/paper/TIP-2021-Dynamic Selection Network for Image Inpainting.pdf -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/run.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/test.sh -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/train.sh -------------------------------------------------------------------------------- /utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangning-001/DSNet/HEAD/utils/io.py --------------------------------------------------------------------------------