├── CNN_recurrent.py ├── CNN_recurrent_new.py ├── MC_network.py ├── PLVC_Training.py ├── README.md ├── Video_examples ├── Examples (ablation) │ ├── 4. PLVC (no h^D, no m_i) bpp=0.0835.mkv │ └── 5. PLVC (no GAN) bpp=0.0953.mkv ├── Examples │ ├── 1. Our PLVC bpp=0.0730.mkv │ ├── 2. RLVC (SSIM) bpp=0.0733.mkv │ └── 3. HM16.20 bpp=0.0813.bin └── Readme.pdf ├── functions.py ├── hific ├── README.md ├── archs.py ├── colab.ipynb ├── configs.py ├── evaluate.py ├── helpers.py ├── hific_test.py ├── model.py ├── readme ├── requirements.txt └── train.py ├── motion.py ├── rnn_cell.py ├── rnn_cell_new.py └── warp.py /CNN_recurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/CNN_recurrent.py -------------------------------------------------------------------------------- /CNN_recurrent_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/CNN_recurrent_new.py -------------------------------------------------------------------------------- /MC_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/MC_network.py -------------------------------------------------------------------------------- /PLVC_Training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/PLVC_Training.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/README.md -------------------------------------------------------------------------------- /Video_examples/Examples (ablation)/4. PLVC (no h^D, no m_i) bpp=0.0835.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/Video_examples/Examples (ablation)/4. PLVC (no h^D, no m_i) bpp=0.0835.mkv -------------------------------------------------------------------------------- /Video_examples/Examples (ablation)/5. PLVC (no GAN) bpp=0.0953.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/Video_examples/Examples (ablation)/5. PLVC (no GAN) bpp=0.0953.mkv -------------------------------------------------------------------------------- /Video_examples/Examples/1. Our PLVC bpp=0.0730.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/Video_examples/Examples/1. Our PLVC bpp=0.0730.mkv -------------------------------------------------------------------------------- /Video_examples/Examples/2. RLVC (SSIM) bpp=0.0733.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/Video_examples/Examples/2. RLVC (SSIM) bpp=0.0733.mkv -------------------------------------------------------------------------------- /Video_examples/Examples/3. HM16.20 bpp=0.0813.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/Video_examples/Examples/3. HM16.20 bpp=0.0813.bin -------------------------------------------------------------------------------- /Video_examples/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/Video_examples/Readme.pdf -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/functions.py -------------------------------------------------------------------------------- /hific/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/hific/README.md -------------------------------------------------------------------------------- /hific/archs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/hific/archs.py -------------------------------------------------------------------------------- /hific/colab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/hific/colab.ipynb -------------------------------------------------------------------------------- /hific/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/hific/configs.py -------------------------------------------------------------------------------- /hific/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/hific/evaluate.py -------------------------------------------------------------------------------- /hific/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/hific/helpers.py -------------------------------------------------------------------------------- /hific/hific_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/hific/hific_test.py -------------------------------------------------------------------------------- /hific/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/hific/model.py -------------------------------------------------------------------------------- /hific/readme: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hific/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/hific/requirements.txt -------------------------------------------------------------------------------- /hific/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/hific/train.py -------------------------------------------------------------------------------- /motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/motion.py -------------------------------------------------------------------------------- /rnn_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/rnn_cell.py -------------------------------------------------------------------------------- /rnn_cell_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/rnn_cell_new.py -------------------------------------------------------------------------------- /warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenYang-home/PLVC/HEAD/warp.py --------------------------------------------------------------------------------