MCPcopy Create free account
hub / github.com/UZ-SLAMLab/ORB_SLAM3 / Stop

Method Stop

src/Tracking.cc:4093–4104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4091}
4092
4093bool Tracking::Stop()
4094{
4095 unique_lock<mutex> lock(mMutexStop);
4096 if(mbStopRequested && !mbNotStop)
4097 {
4098 mbStopped = true;
4099 cout << "Tracking STOP" << endl;
4100 return true;
4101 }
4102
4103 return false;
4104}
4105
4106bool Tracking::stopRequested()
4107{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected