├── README.md ├── UTVNet .png ├── datacode ├── __init__.py └── dataset.py ├── dataset ├── ELD │ └── .gitignore └── sRGBSID │ └── .gitignore ├── evaluate.py ├── metric └── metrics.py ├── models ├── basicblock.py ├── lc_model.py ├── network.py ├── nli_model.py ├── ns_model.py └── utv_model.py ├── option.py ├── pretrain_model ├── .gitignore └── README.md ├── result ├── ELD_cano │ ├── .gitignore │ └── README.md ├── ELD_niko │ ├── .gitignore │ └── README.md ├── ELD_sony │ ├── .gitignore │ └── README.md └── sRGBSID │ └── README.md └── test.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/README.md -------------------------------------------------------------------------------- /UTVNet .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/UTVNet .png -------------------------------------------------------------------------------- /datacode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datacode/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/datacode/dataset.py -------------------------------------------------------------------------------- /dataset/ELD/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/sRGBSID/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/evaluate.py -------------------------------------------------------------------------------- /metric/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/metric/metrics.py -------------------------------------------------------------------------------- /models/basicblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/models/basicblock.py -------------------------------------------------------------------------------- /models/lc_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/models/lc_model.py -------------------------------------------------------------------------------- /models/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/models/network.py -------------------------------------------------------------------------------- /models/nli_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/models/nli_model.py -------------------------------------------------------------------------------- /models/ns_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/models/ns_model.py -------------------------------------------------------------------------------- /models/utv_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/models/utv_model.py -------------------------------------------------------------------------------- /option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/option.py -------------------------------------------------------------------------------- /pretrain_model/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pretrain_model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/pretrain_model/README.md -------------------------------------------------------------------------------- /result/ELD_cano/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /result/ELD_cano/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/result/ELD_cano/README.md -------------------------------------------------------------------------------- /result/ELD_niko/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /result/ELD_niko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/result/ELD_niko/README.md -------------------------------------------------------------------------------- /result/ELD_sony/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /result/ELD_sony/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/result/ELD_sony/README.md -------------------------------------------------------------------------------- /result/sRGBSID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/result/sRGBSID/README.md -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieZCJ/UTVNet/HEAD/test.py --------------------------------------------------------------------------------