We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
数据加载时候有这样一段代码R = sensor2global_rotation_past @ (inv(ego2global_rotation_curr).T @ inv(lidar2ego_rotation_curr).T)。正交矩阵逆等于转置,如果变量名称没错,那代码等效于sensor2global_rotation_past @ ego2global_rotation_curr @ lidar2ego_rotation_curr。这个R怎么会是lidar2sensor(lidar2cam)的旋转矩阵呢?
R = sensor2global_rotation_past @ (inv(ego2global_rotation_curr).T @ inv(lidar2ego_rotation_curr).T)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
数据加载时候有这样一段代码
R = sensor2global_rotation_past @ (inv(ego2global_rotation_curr).T @ inv(lidar2ego_rotation_curr).T)
。正交矩阵逆等于转置,如果变量名称没错,那代码等效于sensor2global_rotation_past @ ego2global_rotation_curr @ lidar2ego_rotation_curr。这个R怎么会是lidar2sensor(lidar2cam)的旋转矩阵呢?The text was updated successfully, but these errors were encountered: