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
Hello,As I know, the inverse and transpose of a rotate matrix will be the same. So, transpose of inverse matrix will be itself.
In obtain_sensor2top of mmdetection3d/blob/master/tools/data_converter/nuscenes_converter.py,
there is code like
np.linalg.inv(e2g_r_mat).T
np.linalg.inv(l2e_r_mat).T
actually they equals e2g_r_mat and l2e_r_mat.
Question is what is the meaning of np.linalg.inv().T ops?
Anyone could help to explain?
Thank you!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello,As I know, the inverse and transpose of a rotate matrix will be the same. So, transpose of inverse matrix will be itself.
In obtain_sensor2top of mmdetection3d/blob/master/tools/data_converter/nuscenes_converter.py,
there is code like
np.linalg.inv(e2g_r_mat).T
np.linalg.inv(l2e_r_mat).T
actually they equals e2g_r_mat and l2e_r_mat.
Question is what is the meaning of np.linalg.inv().T ops?
Anyone could help to explain?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions