-
Notifications
You must be signed in to change notification settings - Fork 206
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
question about ScanMatcher::score #15
Comments
me too! I need the explanation. |
I have the same question ,have you sloved it? |
me too! I think there's a bug! |
I think this is a bug that was shadowed by another bug, #25 And yes,
should be replaced with
With these two bugs solved, gmapping stops looking for best score inside a wall. |
Oh, there is a PR to fix that: #10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in this function ,to caculate pfree,there are
double freeDelta=map.getDelta()*m_freeCellRatio;
andpfree.x+=(*r-map.getDelta()*freeDelta)*cos(lp.theta+*angle); pfree.y+=(*r-map.getDelta()*freeDelta)*sin(lp.theta+*angle);
;obviously r - delta^2sqrt(2) (freeDelta = sqrt(2))
i think r - deltasqart(2) can show the range of pfree ,but the equation above i don't know its mean.
The text was updated successfully, but these errors were encountered: