    

 ## On this page

  

 

 # simulation\_framework::evaluator::PredictiveTimeToCollisionCalculator Class Reference

 Last update: 16.07.2025 

class [PredictiveTimeToCollisionCalculator](classsimulation__framework_1_1evaluator_1_1PredictiveTimeToCollisionCalculator.xhtml "class PredictiveTimeToCollisionCalculator") [More...](classsimulation__framework_1_1evaluator_1_1PredictiveTimeToCollisionCalculator.xhtml#details)

`#include <<a class="el" href="predictive__ttc__calculator_8h_source.xhtml">predictive_ttc_calculator.h</a>>`

## <a name="pub-methods"></a>Public Member Functions

<a id="a86df5d93b1b1479bf08c61f7d243886c"></a>std::chrono::milliseconds **Calculate** (const avx\_osi3::GroundTruth &amp;ground\_truth) const <a id="details" name="details"></a>## Detailed Description

class [PredictiveTimeToCollisionCalculator](classsimulation__framework_1_1evaluator_1_1PredictiveTimeToCollisionCalculator.xhtml "class PredictiveTimeToCollisionCalculator")

[PredictiveTimeToCollisionCalculator](classsimulation__framework_1_1evaluator_1_1PredictiveTimeToCollisionCalculator.xhtml "class PredictiveTimeToCollisionCalculator") class to calculate the time of Ego to collision with other traffic car based on osi GroundTruth Internal Variables: uint64\_t predictive\_ttc\_precision\_{100} : step in time space to estimate the collision between 2 objects uint64\_t predictive\_ttc\_max\_{20000}: maximum time span from current timestamp for collision evaluation. If the predictive\_min\_ttc value calculated is very large. We assume that the vehicle will never collide. In such cases, we have decided to use a considerably large value of time to collision as predictive\_ttc\_max\_{20000} and mark it as a max value of predictive\_min\_ttc.

Algorithm explaination:

1. read Ego vehicle position and speed vectors, as well as its bounding box size from GroundTruth and compute the BoundingBox
2. loop through all existing objects within MovingObject list from GroundTruth and compute the BoundingBox.
3. check if there is any collision between ego vehicle and traffic objects 3.1 if so return 0 indicating that there is collision 3.2 if there is no collision in current frame, estimate if there will be a collision in near future (dt) under condition that 2 vehicles keeping their current speed vector. If so, return this std::chrono::milliseconds(dt) as predictive time to collision.



---

The documentation for this class was generated from the following files:- [predictive\_ttc\_calculator.h](predictive__ttc__calculator_8h_source.xhtml)
- predictive\_ttc\_calculator.cpp