pglira / simpleICP

Implementations of a rather simple version of the Iterative Closest Point algorithm in various languages.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

(C++) 1-based index

mitjap opened this issue · comments

I've noticed that in some places you used 1-based indices. I guess all of this should be 0-based?

for (int i = 1; i < v.size(); i++)

for (int i = 1; i < v.size(); i++)

for (long i = 1; i < NoPts(); i++)