Get the size of BoxVec map
| 70 | |
| 71 | // Get the size of BoxVec map |
| 72 | int64_t TrackedObjectBBox::GetLength() const |
| 73 | { |
| 74 | if (BoxVec.empty()) |
| 75 | return 0; |
| 76 | if (BoxVec.size() == 1) |
| 77 | return 1; |
| 78 | return BoxVec.size(); |
| 79 | } |
| 80 | |
| 81 | // Check if there is a bounding-box in the given frame |
| 82 | bool TrackedObjectBBox::Contains(int64_t frame_num) const |
nothing calls this directly
no outgoing calls
no test coverage detected