Const-cast of the GetBox function, so that it can be called inside other cont function
| 180 | BBox GetBox(int64_t frame_number); |
| 181 | /// Const-cast of the GetBox function, so that it can be called inside other cont function |
| 182 | BBox GetBox(int64_t frame_number) const |
| 183 | { |
| 184 | return const_cast<TrackedObjectBBox *>(this)->GetBox(frame_number); |
| 185 | } |
| 186 | |
| 187 | /// Load the bounding-boxes information from the protobuf file |
| 188 | bool LoadBoxData(std::string inputFilePath); |
nothing calls this directly
no outgoing calls
no test coverage detected