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

About occlusion map #1

Closed 36572545 closed 4 years ago

36572545 commented 4 years ago

Hi~! In your paper, the element of occlusion map is either 0 (implies the pixel is visible only in I_(n+1)) or 1(implies the pixel is visible only in I_n). How do you know which pixels are visible in both input frames, as your paper section "offset visualization" shows?

HyeongminLEE commented 4 years ago

The occlusion map can be not only 0 or 1, but also any real number between 0 and 1. When the pixels are visible in both input frames, the occlusion map value becomes 0.5.

Thank you!!

36572545 commented 4 years ago

Oh, my fault. Thanks a lot!