Real-Time Intermediate Flow Estimation for Video Frame Interpolation
Paper
β’
2011.06294
β’
Published
β’
1
This repo provides a fine-tuned version of RIFE v3 (HDv3) adapted for WMS satellite imagery (2kβ5k). Our model is optimized for smooth temporal interpolation of clouds, land/sea surfaces, and atmospheric patterns.
| Model | PSNR β | SSIM β |
|---|---|---|
| Baseline (HDv3) | 32.57 | 0.8867 |
| Fine-tuned (L1 only) | 34.10 | 0.8974 |
| Fine-tuned (Custom) | 34.42 | 0.8991 |
N = ~5.3k validation triplets from WMS sensors. Visual inspection confirms improved temporal stability and sharper cloud edges.
git clone https://huggingface.co/Anson-Saju-George/wms-rifev3
cd wms-rifev3
pip install -r requirements.txt
python demo_infer_pair.py --img0 frame_000.png --img1 frame_001.png
This will output interp_000_001.png.
python finetune_infer_wms_sequence.py --video sample.mp4 --exp 1
Generates sample_2X.mp4.
Train:
python finetune_custom_loss_train.py
Eval:
python finetune_eval_wms.py
We trained on curated WMS imagery (2kβ5k resolution). Due to license restrictions, raw datasets are not redistributed. Please build from your own WMS feeds.
If you use this model, please cite the base RIFE paper:
@inproceedings{huang2022rife,
title={Real-Time Intermediate Flow Estimation for Video Frame Interpolation},
author={Huang, Zhewei and Zhang, Tianyuan and Heng, Wen and Shi, Boxin and Zhou, Shuchang},
booktitle={European Conference on Computer Vision (ECCV)},
year={2022}
}
Apache-2.0 (same as original RIFE). Please also respect the license of any datasets you use.