Added support to attach clip to detected object (ObjectDetection) effect

This feature let's the user attach a clip to an object detected by the Object Detection effect, in the same way it is done with the Tracker Effect.
This commit is contained in:
Brenno
2021-01-22 19:28:16 -03:00
parent 17463313fc
commit 32a217eda7
11 changed files with 148 additions and 27 deletions

View File

@@ -230,7 +230,7 @@ bool TrackedObjectBBox::LoadBoxData(std::string inputFilePath)
// Read the existing tracker message.
fstream input(inputFilePath, ios::in | ios::binary);
//Check if it was able to read the protobuf data
// Check if it was able to read the protobuf data
if (!bboxMessage.ParseFromIstream(&input))
{
cerr << "Failed to parse protobuf message." << endl;