├── .gitignore ├── README.md ├── codes ├── SDTS_test.py ├── SDTS_train.py ├── flow.py ├── flows_lib.py ├── func.py └── net.py ├── files ├── ENet.png ├── MC.png └── overview.png ├── model_LD37 ├── checkpoint ├── model-ckpt-30.data-00000-of-00001 ├── model-ckpt-30.index └── model-ckpt-30.meta └── test_yuv ├── LD37 └── data │ └── BQSquare_416x240_60_LD_37_LOWVVC.yuv └── label └── BQSquare_416x240_60_100f_org.yuv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/README.md -------------------------------------------------------------------------------- /codes/SDTS_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/codes/SDTS_test.py -------------------------------------------------------------------------------- /codes/SDTS_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/codes/SDTS_train.py -------------------------------------------------------------------------------- /codes/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/codes/flow.py -------------------------------------------------------------------------------- /codes/flows_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/codes/flows_lib.py -------------------------------------------------------------------------------- /codes/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/codes/func.py -------------------------------------------------------------------------------- /codes/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/codes/net.py -------------------------------------------------------------------------------- /files/ENet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/files/ENet.png -------------------------------------------------------------------------------- /files/MC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/files/MC.png -------------------------------------------------------------------------------- /files/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/files/overview.png -------------------------------------------------------------------------------- /model_LD37/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/model_LD37/checkpoint -------------------------------------------------------------------------------- /model_LD37/model-ckpt-30.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/model_LD37/model-ckpt-30.data-00000-of-00001 -------------------------------------------------------------------------------- /model_LD37/model-ckpt-30.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/model_LD37/model-ckpt-30.index -------------------------------------------------------------------------------- /model_LD37/model-ckpt-30.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/model_LD37/model-ckpt-30.meta -------------------------------------------------------------------------------- /test_yuv/LD37/data/BQSquare_416x240_60_LD_37_LOWVVC.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/test_yuv/LD37/data/BQSquare_416x240_60_LD_37_LOWVVC.yuv -------------------------------------------------------------------------------- /test_yuv/label/BQSquare_416x240_60_100f_org.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/SDTS/HEAD/test_yuv/label/BQSquare_416x240_60_100f_org.yuv --------------------------------------------------------------------------------