MCPcopy Create free account
hub / github.com/ANYbotics/elevation_mapping / initialize

Method initialize

elevation_mapping/src/ElevationMapping.cpp:207–218  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

205}
206
207bool ElevationMapping::initialize()
208{
209 ROS_INFO("Elevation mapping node initializing ... ");
210 fusionServiceThread_ = boost::thread(boost::bind(&ElevationMapping::runFusionServiceThread, this));
211 Duration(1.0).sleep(); // Need this to get the TF caches fill up.
212 resetMapUpdateTimer();
213 fusedMapPublishTimer_.start();
214 visibilityCleanupThread_ = boost::thread(boost::bind(&ElevationMapping::visibilityCleanupThread, this));
215 visibilityCleanupTimer_.start();
216 ROS_INFO("Done.");
217 return true;
218}
219
220void ElevationMapping::runFusionServiceThread()
221{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected