\brief CTrack::ConstructObject \return
| 600 | /// \return |
| 601 | /// |
| 602 | TrackingObject CTrack::ConstructObject(time_point_t frameTime) const |
| 603 | { |
| 604 | std::chrono::duration<double> period = frameTime - m_staticStartTime; |
| 605 | return TrackingObject(GetLastRect(), m_trackID, m_trace, IsStatic(), cvRound(period.count()), IsOutOfTheFrame(), |
| 606 | m_currType, m_lastRegion.m_confidence, m_kalman.GetVelocity()); |
| 607 | } |
| 608 | |
| 609 | /// |
| 610 | /// \brief CTrack::GetID |
no test coverage detected