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
BALM/src/benchmark/benchmark_virtual.cpp
Line 467 in df9a376
x_stats[j].p = x_stats[j].p - x_stats[j].R * x_stats[0].R.transpose() * x_stats[0].p; x_stats[j].R = x_stats[j].R * x_stats[0].R.transpose();
fixed code:
x_stats[j].p = x_stats[0].R.transpose() *(x_stats[j].p - x_stats[0].p); x_stats[j].R = x_stats[0].R.transpose() * x_stats[j].R;
The text was updated successfully, but these errors were encountered:
thanks for great works! @Zale-Liu initial pointcloud in global frame with noise poses: optimized pointcloud in global frame with optimized poses:
Sorry, something went wrong.
Yes, you are right. It is a bug I forget to fix.
No branches or pull requests
BALM/src/benchmark/benchmark_virtual.cpp
Line 467 in df9a376
@Zale-Liu actually, x_stats[0].p and x_stats[j].p in global frame, x_stats[j].R is from body frame to global frame
origin code:
fixed code:
The text was updated successfully, but these errors were encountered: