JHLew / MoMo

Implementation of "Disentangled Motion Modeling for Video Frame Interpolation"
https://arxiv.org/abs/2406.17256
84 stars 0 forks source link

How to do more than x2 frames #5

Closed SoftologyPro closed 2 months ago

SoftologyPro commented 2 months ago

The demo works for x2. How do we specify 3x, 4x or more if need be?

JHLew commented 2 months ago

As mentioned in Issue #1, our project is designed for x2 interpolation. In case you want to interpolate by higher rates, you can run our interpolation method recurrently, e.g., x8 interpolation by running our method of x2 three times, which would lead to (((x2) x2) x2) frames of the original video.

SoftologyPro commented 2 months ago

OK, thanks for confirming :)