lisiyao21 / AnimeInterp

The code for CVPR21 paper "Deep Animation Video Interpolation in the Wild"
402 stars 39 forks source link

About Eq. 1 #16

Closed laomao0 closed 3 years ago

laomao0 commented 3 years ago

Hi Siyao, Why equation 1 could measure the similarities of features. It uses min(.) operation, why not L1 difference? Thanks.

xiaofeng94 commented 3 years ago

It calculates the intersection of two normalized vectors as their similarity. Actually, it's called Histogram Intersection that was presented in the paper, color indexing.

laomao0 commented 3 years ago

It calculates the intersection of two normalized vectors as their similarity. Actually, it's called Histogram Intersection that was presented in the paper, color indexing.

Thanks for your reply!