You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!
The text was updated successfully, but these errors were encountered:
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!
The text was updated successfully, but these errors were encountered: