| 288 | } |
| 289 | |
| 290 | CVDetectionData CVObjectDetection::GetDetectionData(size_t frameId){ |
| 291 | // Check if the stabilizer info for the requested frame exists |
| 292 | if ( detectionsData.find(frameId) == detectionsData.end() ) { |
| 293 | |
| 294 | return CVDetectionData(); |
| 295 | } else { |
| 296 | |
| 297 | return detectionsData[frameId]; |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | bool CVObjectDetection::SaveObjDetectedData(){ |
| 302 | // Create tracker message |
no test coverage detected