HyeongminLEE / AdaCoF-pytorch

Official source code for our paper "AdaCoF: Adaptive Collaboration of Flows for Video Frame Interpolation" (CVPR 2020)
MIT License
172 stars 27 forks source link

only interpolate one frame? #3

Closed EAGLE50 closed 4 years ago

EAGLE50 commented 4 years ago

in interpolate_video.py , is the arg of '--dilation' useless? I want to inpterpolate 4 frame , such as from 30fps to 120fps. Could you tell me what should I do. thanks

HyeongminLEE commented 4 years ago

The arguments such as dilation and kernel size can be taken from config.txt file. However, when the config file does not contain dilation or kernel size, the arguments become meaningful.

If you want to interpolate 4 frames, you can run interpolate_video.py twice.

Thanks.

EAGLE50 commented 4 years ago

OK. I got it. thanks