├── .gitignore ├── README.md ├── codes ├── LSTM │ ├── BiConvLSTM.py │ ├── __init__.py │ ├── functional.py │ ├── module.py │ └── utils.py ├── MGANet_test_AI37.py ├── MGANet_test_LD37.py ├── Net │ ├── MGANet.py │ ├── multiscaleloss.py │ └── net_view.py └── dataloader │ ├── Digraph.gv.pdf │ ├── h5_dataset_T.py │ └── read_h5.py ├── files ├── GUNet.png └── framework.png ├── models └── readme.txt ├── testing_set ├── AI37 │ ├── data │ │ └── BQSquare_416x240_60_37.yuv │ └── mask │ │ └── BQSquare_416x240_60_37_mask.yuv ├── LD37 │ ├── data │ │ └── BQSquare_416x240_60_37.yuv │ └── mask │ │ └── BQSquare_416x240_60_37_mask.yuv └── label │ └── BQSquare_416x240_60_100f.yuv └── training_set └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/README.md -------------------------------------------------------------------------------- /codes/LSTM/BiConvLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/codes/LSTM/BiConvLSTM.py -------------------------------------------------------------------------------- /codes/LSTM/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/codes/LSTM/__init__.py -------------------------------------------------------------------------------- /codes/LSTM/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/codes/LSTM/functional.py -------------------------------------------------------------------------------- /codes/LSTM/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/codes/LSTM/module.py -------------------------------------------------------------------------------- /codes/LSTM/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/codes/LSTM/utils.py -------------------------------------------------------------------------------- /codes/MGANet_test_AI37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/codes/MGANet_test_AI37.py -------------------------------------------------------------------------------- /codes/MGANet_test_LD37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/codes/MGANet_test_LD37.py -------------------------------------------------------------------------------- /codes/Net/MGANet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/codes/Net/MGANet.py -------------------------------------------------------------------------------- /codes/Net/multiscaleloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/codes/Net/multiscaleloss.py -------------------------------------------------------------------------------- /codes/Net/net_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/codes/Net/net_view.py -------------------------------------------------------------------------------- /codes/dataloader/Digraph.gv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/codes/dataloader/Digraph.gv.pdf -------------------------------------------------------------------------------- /codes/dataloader/h5_dataset_T.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/codes/dataloader/h5_dataset_T.py -------------------------------------------------------------------------------- /codes/dataloader/read_h5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/codes/dataloader/read_h5.py -------------------------------------------------------------------------------- /files/GUNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/files/GUNet.png -------------------------------------------------------------------------------- /files/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/files/framework.png -------------------------------------------------------------------------------- /models/readme.txt: -------------------------------------------------------------------------------- 1 | Put pretrained model here! -------------------------------------------------------------------------------- /testing_set/AI37/data/BQSquare_416x240_60_37.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/testing_set/AI37/data/BQSquare_416x240_60_37.yuv -------------------------------------------------------------------------------- /testing_set/AI37/mask/BQSquare_416x240_60_37_mask.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/testing_set/AI37/mask/BQSquare_416x240_60_37_mask.yuv -------------------------------------------------------------------------------- /testing_set/LD37/data/BQSquare_416x240_60_37.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/testing_set/LD37/data/BQSquare_416x240_60_37.yuv -------------------------------------------------------------------------------- /testing_set/LD37/mask/BQSquare_416x240_60_37_mask.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/testing_set/LD37/mask/BQSquare_416x240_60_37_mask.yuv -------------------------------------------------------------------------------- /testing_set/label/BQSquare_416x240_60_100f.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/testing_set/label/BQSquare_416x240_60_100f.yuv -------------------------------------------------------------------------------- /training_set/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengab/MGANet-DCC2020/HEAD/training_set/readme.txt --------------------------------------------------------------------------------