You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the PF iteration is started by odometryCallback, which is bad practice. We should stop using ros::spin and move to a while() + ros::spinOnce() loop.
This makes it easier to time the algorithm, checking if we are running behind, and other benifits.
The text was updated successfully, but these errors were encountered:
Currently the PF iteration is started by
odometryCallback
, which is bad practice. We should stop usingros::spin
and move to awhile() + ros::spinOnce()
loop.This makes it easier to time the algorithm, checking if we are running behind, and other benifits.
The text was updated successfully, but these errors were encountered: