tf max_cache_time
Hi,
The tf transform listener object constructor takes a value for the max_cache_time; say 10 seconds for instance..
tf::TransformListener tf(ros::Duration(10));
What is the use of this cache? And what are the pros and cons of increasing or decreasing the number?
Does this imply that if I add a value of 5, I am expecting to use 5 second old tf data somewhere? And does this have any effect on the duration for the waitForTransform function?
Thank you.