├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data.py ├── figs ├── VT-IMAG.png └── framework.png ├── models ├── ConTriNet.py └── res2net_v1b_base.py ├── requirements.txt ├── test.py └── train.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSer-Tang-hao/ConTriNet_RGBT-SOD/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSer-Tang-hao/ConTriNet_RGBT-SOD/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSer-Tang-hao/ConTriNet_RGBT-SOD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSer-Tang-hao/ConTriNet_RGBT-SOD/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSer-Tang-hao/ConTriNet_RGBT-SOD/HEAD/data.py -------------------------------------------------------------------------------- /figs/VT-IMAG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSer-Tang-hao/ConTriNet_RGBT-SOD/HEAD/figs/VT-IMAG.png -------------------------------------------------------------------------------- /figs/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSer-Tang-hao/ConTriNet_RGBT-SOD/HEAD/figs/framework.png -------------------------------------------------------------------------------- /models/ConTriNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSer-Tang-hao/ConTriNet_RGBT-SOD/HEAD/models/ConTriNet.py -------------------------------------------------------------------------------- /models/res2net_v1b_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSer-Tang-hao/ConTriNet_RGBT-SOD/HEAD/models/res2net_v1b_base.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSer-Tang-hao/ConTriNet_RGBT-SOD/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSer-Tang-hao/ConTriNet_RGBT-SOD/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSer-Tang-hao/ConTriNet_RGBT-SOD/HEAD/train.py --------------------------------------------------------------------------------