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!
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 beCR_seq = np.concatenate((CR_seq, [1.0/scaleRecovered]), axis=0)
Thank you!