ICPCUDA icon indicating copy to clipboard operation
ICPCUDA copied to clipboard

Run failed

Open lhoangan opened this issue 10 years ago • 5 comments

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.

lhoangan avatar Aug 01 '15 22:08 lhoangan

Interesting, never had an issue with this on many versions of Ubuntu over the years. What OS are you using?

mp3guy avatar Aug 02 '15 13:08 mp3guy

The same as I did. windows 10 with vs2013

johnzjq avatar May 25 '16 07:05 johnzjq

Does it work on Windows?

mp3guy avatar May 25 '16 11:05 mp3guy

It works like a charm =)

johnzjq avatar May 25 '16 14:05 johnzjq

@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

syedharoonalam avatar Jul 29 '16 15:07 syedharoonalam