\brief CTrack::GetLostPeriod \return
| 620 | /// \return |
| 621 | /// |
| 622 | double CTrack::GetLostPeriod(time_point_t currTime) const |
| 623 | { |
| 624 | std::chrono::duration<double> period = currTime - m_lastDetectionTime; |
| 625 | return period.count(); |
| 626 | } |
| 627 | |
| 628 | /// |
| 629 | /// \brief CTrack::ResetLostTime |