-
Notifications
You must be signed in to change notification settings - Fork 179
New issue
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
Run failed #2
Comments
Interesting, never had an issue with this on many versions of Ubuntu over the years. What OS are you using? |
The same as I did. |
Does it work on Windows? |
It works like a charm =) |
@johnzjq can you please suggest how you worked with Eigen. I am facing this problem: Compile Failed (Eigen errors) I tried with Eigen 3.3 beta 2 and stevenlovegrove/eigen |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the code. I've been testing it, so more to come later. But initially, it crashes at this line
ICP.cpp | 170: icpOdom.getIncrementalTransformation(trans, rot, threads, blocks);
The reason that I found was because the member attribute iteration is not well allocated in the icpOdom's constructor. So I changed the line
ICPOdometry.cpp | 33: iterations.reserve(NUM_PYRS);
into
ICPOdometry.cpp | 33: iterations.resize(NUM_PYRS);
and it works fine till now.
The text was updated successfully, but these errors were encountered: