Added CVObjectDetection and ObjectDetection effect

Also included kalman filter functions and code for tracking the output boxes from DNN model
This commit is contained in:
Brenno
2020-07-26 16:19:55 -03:00
parent d87a1260f3
commit 1a598b16df
26 changed files with 4039 additions and 81 deletions

View File

@@ -139,7 +139,7 @@ bool Tracker::LoadTrackedData(std::string inputFilePath){
}
// Get tracker info for the desired frame
EffectFrameData Tracker::GetTrackedData(int frameId){
EffectFrameData Tracker::GetTrackedData(size_t frameId){
// Check if the tracker info for the requested frame exists
if ( trackedDataById.find(frameId) == trackedDataById.end() ) {