├── Fig ├── picture01.png ├── picture03.png ├── picture06.png └── picture2.png ├── README.md ├── dataset.py ├── datasets └── SIRST3 │ └── img_idx │ ├── test_SIRST3.txt │ └── train_SIRST3.txt ├── metrics.py ├── model ├── Config.py └── SCTransNet.py ├── test.py ├── train.py ├── utils.py └── warmup_scheduler.py /Fig/picture01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/Fig/picture01.png -------------------------------------------------------------------------------- /Fig/picture03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/Fig/picture03.png -------------------------------------------------------------------------------- /Fig/picture06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/Fig/picture06.png -------------------------------------------------------------------------------- /Fig/picture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/Fig/picture2.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/README.md -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/dataset.py -------------------------------------------------------------------------------- /datasets/SIRST3/img_idx/test_SIRST3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/datasets/SIRST3/img_idx/test_SIRST3.txt -------------------------------------------------------------------------------- /datasets/SIRST3/img_idx/train_SIRST3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/datasets/SIRST3/img_idx/train_SIRST3.txt -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/metrics.py -------------------------------------------------------------------------------- /model/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/model/Config.py -------------------------------------------------------------------------------- /model/SCTransNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/model/SCTransNet.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/utils.py -------------------------------------------------------------------------------- /warmup_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdFai/SCTransNet/HEAD/warmup_scheduler.py --------------------------------------------------------------------------------