Hi, in the paper referenced here: https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=6385773&tag=1, absolute_trajectory_error is defined as the root mean squared error, but instead in the code it is computed as square root of sum of squared errors as referenced below.
|
e_trans = np.sqrt(np.sum(e_trans_vec**2, 1)) |
Is there a specific reason for doing this?