hzwer/ECCV2022-RIFE

How to avoid interpolating scene changes?

hsilva664 opened this issue · 2 comments

Hello, I noticed that sometimes the model attempts to interpolate scene changes, which leads to bad results. This is very noticeable when watching the videos (see the example below). Simply not doing the interpolation in these cases would be enough to greatly improve results. Is there any parameter to avoid interpolation in these cases?

hzwer commented

https://github.com/megvii-research/ECCV2022-RIFE/blob/1a21b29145d2d8ac557c22ad1a156c4c4aa39348/inference_video.py#L245

The current strategy is to determine whether ssim < 0.2
This judgment can be modified according to needs

Thanks!