| 153 | // Timeline: per-frame instance presence |
| 154 | // timeline_instances[frame_index] = list of {instance_id, score} |
| 155 | struct frame_entry { |
| 156 | std::vector<std::pair<int, float>> instances; // (id, score) |
| 157 | }; |
| 158 | std::vector<frame_entry> timeline; |
| 159 | int timeline_max_frame = -1; // highest frame tracked so far |
| 160 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected