jinsc37 / DIFRINT

TOG20/SIGGRAPH Asia19 "Deep Iterative Frame Interpolation for Full-frame Video Stabilization" - PyTorch
81 stars 24 forks source link

calculations of metrics #2

Open alex04072000 opened 4 years ago

alex04072000 commented 4 years ago

Hi, great work!

I want to evaluate my own stabilized videos using the script metrics.py.

But I notice in L67: CR_seq = np.concatenate((1.0/CR_seq, [scaleRecovered]), axis=0) Shouldn't this be CR_seq = np.concatenate((CR_seq, [1.0/scaleRecovered]), axis=0) Thank you!

Annbless commented 3 years ago

Hi, I'm having the same problem here. I think it's a bit strange that every time a new frame comes in, the previous crop takes the inverse.