2020-10-29 00:34:31 -03:00
|
|
|
/**
|
|
|
|
|
* @file
|
|
|
|
|
* @brief Source file for the Keyframe class
|
|
|
|
|
* @author Jonathan Thomas <jonathan@openshot.org>
|
|
|
|
|
*
|
|
|
|
|
* @ref License
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* LICENSE
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2008-2019 OpenShot Studios, LLC
|
|
|
|
|
* <http://www.openshotstudios.com/>. This file is part of
|
|
|
|
|
* OpenShot Library (libopenshot), an open-source project dedicated to
|
|
|
|
|
* delivering high quality video editing and animation solutions to the
|
|
|
|
|
* world. For more information visit <http://www.openshot.org/>.
|
|
|
|
|
*
|
|
|
|
|
* OpenShot Library (libopenshot) is free software: you can redistribute it
|
|
|
|
|
* and/or modify it under the terms of the GNU Lesser General Public License
|
|
|
|
|
* as published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* OpenShot Library (libopenshot) is distributed in the hope that it will be
|
|
|
|
|
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
* along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "KeyFrameBBox.h"
|
|
|
|
|
#include <algorithm>
|
2020-12-12 20:23:34 -03:00
|
|
|
#include <fstream>
|
|
|
|
|
#include <iostream>
|
2020-10-29 00:34:31 -03:00
|
|
|
#include <functional>
|
2020-12-12 20:23:34 -03:00
|
|
|
|
|
|
|
|
//#define PI 3.14159265
|
2020-10-29 00:34:31 -03:00
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
using namespace openshot;
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
namespace openshot
|
|
|
|
|
{
|
|
|
|
|
bool IsPointBeforeX(Point const &p, double const x)
|
|
|
|
|
{
|
|
|
|
|
return p.co.X < x;
|
|
|
|
|
}
|
2020-10-29 00:34:31 -03:00
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
double InterpolateLinearCurve(Point const &left, Point const &right, double const target)
|
|
|
|
|
{
|
|
|
|
|
double const diff_Y = right.co.Y - left.co.Y;
|
|
|
|
|
double const diff_X = right.co.X - left.co.X;
|
|
|
|
|
double const slope = diff_Y / diff_X;
|
|
|
|
|
return left.co.Y + slope * (target - left.co.X);
|
|
|
|
|
}
|
2020-10-29 00:34:31 -03:00
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
double InterpolateBezierCurve(Point const &left, Point const &right, double const target, double const allowed_error)
|
|
|
|
|
{
|
|
|
|
|
double const X_diff = right.co.X - left.co.X;
|
|
|
|
|
double const Y_diff = right.co.Y - left.co.Y;
|
|
|
|
|
Coordinate const p0 = left.co;
|
|
|
|
|
Coordinate const p1 = Coordinate(p0.X + left.handle_right.X * X_diff, p0.Y + left.handle_right.Y * Y_diff);
|
|
|
|
|
Coordinate const p2 = Coordinate(p0.X + right.handle_left.X * X_diff, p0.Y + right.handle_left.Y * Y_diff);
|
|
|
|
|
Coordinate const p3 = right.co;
|
2020-10-29 00:34:31 -03:00
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
double t = 0.5;
|
|
|
|
|
double t_step = 0.25;
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
// Bernstein polynoms
|
|
|
|
|
double B[4] = {1, 3, 3, 1};
|
|
|
|
|
double oneMinTExp = 1;
|
|
|
|
|
double tExp = 1;
|
|
|
|
|
for (int i = 0; i < 4; ++i, tExp *= t)
|
|
|
|
|
{
|
|
|
|
|
B[i] *= tExp;
|
|
|
|
|
}
|
|
|
|
|
for (int i = 0; i < 4; ++i, oneMinTExp *= 1 - t)
|
|
|
|
|
{
|
|
|
|
|
B[4 - i - 1] *= oneMinTExp;
|
|
|
|
|
}
|
|
|
|
|
double const x = p0.X * B[0] + p1.X * B[1] + p2.X * B[2] + p3.X * B[3];
|
|
|
|
|
double const y = p0.Y * B[0] + p1.Y * B[1] + p2.Y * B[2] + p3.Y * B[3];
|
|
|
|
|
if (fabs(target - x) < allowed_error)
|
|
|
|
|
{
|
|
|
|
|
return y;
|
|
|
|
|
}
|
|
|
|
|
if (x > target)
|
|
|
|
|
{
|
|
|
|
|
t -= t_step;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
t += t_step;
|
|
|
|
|
}
|
|
|
|
|
t_step /= 2;
|
|
|
|
|
} while (true);
|
|
|
|
|
}
|
2020-10-29 00:34:31 -03:00
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
double InterpolateBetween(Point const &left, Point const &right, double target, double allowed_error)
|
|
|
|
|
{
|
|
|
|
|
assert(left.co.X < target);
|
|
|
|
|
assert(target <= right.co.X);
|
|
|
|
|
switch (right.interpolation)
|
|
|
|
|
{
|
|
|
|
|
case CONSTANT:
|
|
|
|
|
return left.co.Y;
|
|
|
|
|
case LINEAR:
|
|
|
|
|
return InterpolateLinearCurve(left, right, target);
|
|
|
|
|
case BEZIER:
|
|
|
|
|
return InterpolateBezierCurve(left, right, target, allowed_error);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-10-29 00:34:31 -03:00
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
template <typename Check>
|
|
|
|
|
int64_t SearchBetweenPoints(Point const &left, Point const &right, int64_t const current, Check check)
|
|
|
|
|
{
|
|
|
|
|
int64_t start = left.co.X;
|
|
|
|
|
int64_t stop = right.co.X;
|
|
|
|
|
while (start < stop)
|
|
|
|
|
{
|
|
|
|
|
int64_t const mid = (start + stop + 1) / 2;
|
|
|
|
|
double const value = InterpolateBetween(left, right, mid, 0.01);
|
|
|
|
|
if (check(round(value), current))
|
|
|
|
|
{
|
|
|
|
|
start = mid;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
stop = mid - 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return start;
|
|
|
|
|
}
|
|
|
|
|
} // namespace openshot
|
2020-10-29 00:34:31 -03:00
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Default Constructor that sets the bounding-box displacement as 0 and the scales as 1 for the first frame
|
|
|
|
|
KeyFrameBBox::KeyFrameBBox() : delta_x(0.0), delta_y(0.0), scale_x(1.0), scale_y(1.0), rotation(0.0)
|
|
|
|
|
{
|
2020-11-12 21:25:27 -03:00
|
|
|
this->TimeScale = 1.0;
|
2020-10-29 00:34:31 -03:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Add a BBox to the BoxVec map
|
2020-12-14 18:08:44 -03:00
|
|
|
void KeyFrameBBox::AddBox(int64_t _frame_num, float _cx, float _cy, float _width, float _height, float _angle)
|
2020-12-12 20:23:34 -03:00
|
|
|
{
|
|
|
|
|
// Check if the given frame number is valid
|
2020-10-29 00:34:31 -03:00
|
|
|
if (_frame_num < 0)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Instantiate a new bounding-box
|
2020-12-14 18:08:44 -03:00
|
|
|
BBox newBBox = BBox(_cx, _cy, _width, _height, _angle);
|
2020-10-29 00:34:31 -03:00
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Get the time of given frame
|
2020-11-12 21:25:27 -03:00
|
|
|
double time = this->FrameNToTime(_frame_num, 1.0);
|
2020-12-12 20:23:34 -03:00
|
|
|
// Create an iterator that points to the BoxVec pair indexed by the time of given frame
|
|
|
|
|
auto BBoxIterator = BoxVec.find(time);
|
|
|
|
|
|
|
|
|
|
if (BBoxIterator != BoxVec.end())
|
|
|
|
|
{
|
|
|
|
|
// There is a bounding-box indexed by the time of given frame, update-it
|
|
|
|
|
BBoxIterator->second = newBBox;
|
|
|
|
|
}
|
2020-10-29 00:34:31 -03:00
|
|
|
else
|
2020-12-12 20:23:34 -03:00
|
|
|
{
|
|
|
|
|
// There isn't a bounding-box indexed by the time of given frame, insert a new one
|
|
|
|
|
BoxVec.insert({time, newBBox});
|
|
|
|
|
}
|
2020-10-29 00:34:31 -03:00
|
|
|
}
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Get the size of BoxVec map
|
|
|
|
|
int64_t KeyFrameBBox::GetLength() const
|
|
|
|
|
{
|
|
|
|
|
if (BoxVec.empty())
|
2020-10-29 00:34:31 -03:00
|
|
|
return 0;
|
2020-12-12 20:23:34 -03:00
|
|
|
if (BoxVec.size() == 1)
|
2020-10-29 00:34:31 -03:00
|
|
|
return 1;
|
|
|
|
|
return BoxVec.size();
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Check if there is a bounding-box in the given frame
|
|
|
|
|
bool KeyFrameBBox::Contains(int64_t frame_num)
|
|
|
|
|
{
|
|
|
|
|
// Get the time of given frame
|
2020-11-12 21:25:27 -03:00
|
|
|
double time = this->FrameNToTime(frame_num, 1.0);
|
2020-12-12 20:23:34 -03:00
|
|
|
// Create an iterator that points to the BoxVec pair indexed by the time of given frame (or the closest time)
|
2020-11-12 21:25:27 -03:00
|
|
|
auto it = BoxVec.lower_bound(time);
|
|
|
|
|
if (it == BoxVec.end())
|
2020-12-12 20:23:34 -03:00
|
|
|
// BoxVec pair not found
|
2020-11-12 21:25:27 -03:00
|
|
|
return false;
|
|
|
|
|
return true;
|
2020-10-29 00:34:31 -03:00
|
|
|
}
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Remove a bounding-box from the BoxVec map
|
|
|
|
|
void KeyFrameBBox::RemoveBox(int64_t frame_number)
|
|
|
|
|
{
|
|
|
|
|
// Get the time of given frame
|
2020-11-12 21:25:27 -03:00
|
|
|
double time = this->FrameNToTime(frame_number, 1.0);
|
2020-12-12 20:23:34 -03:00
|
|
|
// Create an iterator that points to the BoxVec pair indexed by the time of given frame
|
2020-10-29 00:34:31 -03:00
|
|
|
auto it = BoxVec.find(time);
|
2020-12-12 20:23:34 -03:00
|
|
|
if (it != BoxVec.end())
|
|
|
|
|
{
|
|
|
|
|
// The BoxVec pair exists, so remove it
|
2020-11-12 21:25:27 -03:00
|
|
|
BoxVec.erase(time);
|
2020-10-29 00:34:31 -03:00
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Return a bounding-box from BoxVec with it's properties adjusted by the Keyframes
|
|
|
|
|
BBox KeyFrameBBox::GetValue(int64_t frame_number)
|
|
|
|
|
{
|
|
|
|
|
// Get the time position of the given frame.
|
2020-11-12 21:25:27 -03:00
|
|
|
double time = this->FrameNToTime(frame_number, this->TimeScale);
|
2020-12-12 20:23:34 -03:00
|
|
|
|
|
|
|
|
// Return a iterator pointing to the BoxVec pair indexed by time or to the pair indexed
|
|
|
|
|
// by the closest upper time value.
|
|
|
|
|
auto currentBBoxIterator = BoxVec.lower_bound(time);
|
|
|
|
|
|
|
|
|
|
// Check if there is a pair indexed by time, returns an empty bbox if there isn't.
|
|
|
|
|
if (currentBBoxIterator == BoxVec.end())
|
|
|
|
|
{
|
|
|
|
|
// Create and return an empty bounding-box object
|
|
|
|
|
BBox emptyBBox;
|
|
|
|
|
return emptyBBox;
|
2020-11-12 21:25:27 -03:00
|
|
|
}
|
2020-12-12 20:23:34 -03:00
|
|
|
|
|
|
|
|
// Check if the iterator matches a BBox indexed by time or points to the first element of BoxVec
|
|
|
|
|
if ((currentBBoxIterator->first == time) || (currentBBoxIterator == BoxVec.begin()))
|
|
|
|
|
{
|
|
|
|
|
// Get the BBox indexed by time
|
|
|
|
|
BBox currentBBox = currentBBoxIterator->second;
|
|
|
|
|
|
|
|
|
|
// Adjust the BBox properties by the Keyframes values
|
2020-12-14 18:08:44 -03:00
|
|
|
currentBBox.cx += this->delta_x.GetValue(frame_number);
|
|
|
|
|
currentBBox.cy += this->delta_y.GetValue(frame_number);
|
2020-12-12 20:23:34 -03:00
|
|
|
currentBBox.width *= this->scale_x.GetValue(frame_number);
|
|
|
|
|
currentBBox.height *= this->scale_y.GetValue(frame_number);
|
2020-12-14 18:08:44 -03:00
|
|
|
currentBBox.angle += this->rotation.GetValue(frame_number);
|
2020-11-12 21:25:27 -03:00
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
return currentBBox;
|
2020-10-29 00:34:31 -03:00
|
|
|
}
|
2020-11-12 21:25:27 -03:00
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// BBox indexed by the closest upper time
|
|
|
|
|
BBox currentBBox = currentBBoxIterator->second;
|
|
|
|
|
// BBox indexed by the closet lower time
|
|
|
|
|
BBox previousBBox = prev(currentBBoxIterator, 1)->second;
|
2020-10-29 00:34:31 -03:00
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Interpolate a BBox in the middle of previousBBox and currentBBox
|
|
|
|
|
BBox interpolatedBBox = InterpolateBoxes(prev(currentBBoxIterator, 1)->first, currentBBoxIterator->first,
|
|
|
|
|
previousBBox, currentBBox, time);
|
|
|
|
|
|
|
|
|
|
// Adjust the BBox properties by the Keyframes values
|
2020-12-14 18:08:44 -03:00
|
|
|
interpolatedBBox.cx += this->delta_x.GetValue(frame_number);
|
|
|
|
|
interpolatedBBox.cy += this->delta_y.GetValue(frame_number);
|
2020-12-12 20:23:34 -03:00
|
|
|
interpolatedBBox.width *= this->scale_x.GetValue(frame_number);
|
|
|
|
|
interpolatedBBox.height *= this->scale_y.GetValue(frame_number);
|
2020-12-14 18:08:44 -03:00
|
|
|
interpolatedBBox.angle += this->rotation.GetValue(frame_number);
|
2020-12-12 20:23:34 -03:00
|
|
|
|
|
|
|
|
return interpolatedBBox;
|
2020-10-29 00:34:31 -03:00
|
|
|
}
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Interpolate the bouding-boxes properties
|
|
|
|
|
BBox KeyFrameBBox::InterpolateBoxes(double t1, double t2, BBox left, BBox right, double target)
|
|
|
|
|
{
|
2020-12-14 18:08:44 -03:00
|
|
|
// Interpolate the x-coordinate of the center point
|
|
|
|
|
Point cx_left(t1, left.cx, openshot::InterpolationType::LINEAR);
|
|
|
|
|
Point cx_right(t2, right.cx, openshot::InterpolationType::LINEAR);
|
|
|
|
|
Point cx = InterpolateBetween(cx_left, cx_right, target, 0.01);
|
2020-10-29 00:34:31 -03:00
|
|
|
|
2020-12-14 18:08:44 -03:00
|
|
|
// Interpolate de y-coordinate of the center point
|
|
|
|
|
Point cy_left(t1, left.cy, openshot::InterpolationType::LINEAR);
|
|
|
|
|
Point cy_right(t2, right.cy, openshot::InterpolationType::LINEAR);
|
|
|
|
|
Point cy = InterpolateBetween(cy_left, cy_right, target, 0.01);
|
2020-12-12 20:23:34 -03:00
|
|
|
|
2020-12-14 18:08:44 -03:00
|
|
|
// Interpolate the width
|
|
|
|
|
Point width_left(t1, left.width, openshot::InterpolationType::LINEAR);
|
|
|
|
|
Point width_right(t2, right.width, openshot::InterpolationType::LINEAR);
|
|
|
|
|
Point width = InterpolateBetween(width_left, width_right, target, 0.01);
|
2020-12-12 20:23:34 -03:00
|
|
|
|
2020-12-14 18:08:44 -03:00
|
|
|
// Interpolate the height
|
|
|
|
|
Point height_left(t1, left.height, openshot::InterpolationType::LINEAR);
|
|
|
|
|
Point height_right(t2, right.height, openshot::InterpolationType::LINEAR);
|
|
|
|
|
Point height = InterpolateBetween(height_left, height_right, target, 0.01);
|
2020-10-29 00:34:31 -03:00
|
|
|
|
2020-12-14 18:08:44 -03:00
|
|
|
// Interpolate the rotation angle
|
|
|
|
|
Point angle_left(t1, left.angle, openshot::InterpolationType::LINEAR);
|
|
|
|
|
Point angle_right(t1, right.angle, openshot::InterpolationType::LINEAR);
|
|
|
|
|
Point angle = InterpolateBetween(angle_left, angle_right, target, 0.01);
|
2020-12-12 20:23:34 -03:00
|
|
|
|
2020-12-14 18:08:44 -03:00
|
|
|
// Create a bounding box with the interpolated points
|
|
|
|
|
BBox interpolatedBox(cx.co.Y, cy.co.Y, width.co.Y, height.co.Y, angle.co.Y);
|
2020-10-29 00:34:31 -03:00
|
|
|
|
2020-12-14 18:08:44 -03:00
|
|
|
return interpolatedBox;
|
2020-10-29 00:34:31 -03:00
|
|
|
}
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Update object's BaseFps
|
2020-11-12 21:25:27 -03:00
|
|
|
void KeyFrameBBox::SetBaseFPS(Fraction fps){
|
|
|
|
|
this->BaseFps = fps;
|
2020-10-29 00:34:31 -03:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Return the object's BaseFps
|
2020-11-12 21:25:27 -03:00
|
|
|
Fraction KeyFrameBBox::GetBaseFPS(){
|
|
|
|
|
return BaseFps;
|
2020-10-29 00:34:31 -03:00
|
|
|
}
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Get the time of the given frame
|
2020-11-12 21:25:27 -03:00
|
|
|
double KeyFrameBBox::FrameNToTime(int64_t frame_number, double time_scale){
|
2020-12-12 20:23:34 -03:00
|
|
|
double time = ((double)frame_number) * this->BaseFps.Reciprocal().ToDouble() * (1.0 / time_scale);
|
2020-10-29 00:34:31 -03:00
|
|
|
|
|
|
|
|
return time;
|
|
|
|
|
}
|
2020-11-12 21:25:27 -03:00
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Update the TimeScale member variable
|
2020-11-12 21:25:27 -03:00
|
|
|
void KeyFrameBBox::ScalePoints(double time_scale){
|
|
|
|
|
this->TimeScale = time_scale;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Load the bounding-boxes information from the protobuf file
|
|
|
|
|
bool KeyFrameBBox::LoadBoxData(std::string inputFilePath)
|
|
|
|
|
{
|
|
|
|
|
// Variable to hold the loaded data
|
|
|
|
|
libopenshottracker::Tracker bboxMessage;
|
|
|
|
|
|
|
|
|
|
// Read the existing tracker message.
|
|
|
|
|
fstream input(inputFilePath, ios::in | ios::binary);
|
|
|
|
|
|
|
|
|
|
//Check if it was able to read the protobuf data
|
|
|
|
|
if (!bboxMessage.ParseFromIstream(&input))
|
|
|
|
|
{
|
|
|
|
|
cerr << "Failed to parse protobuf message." << endl;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this->clear();
|
|
|
|
|
|
|
|
|
|
// Iterate over all frames of the saved message
|
|
|
|
|
for (size_t i = 0; i < bboxMessage.frame_size(); i++)
|
|
|
|
|
{
|
|
|
|
|
// Get data of the i-th frame
|
|
|
|
|
const libopenshottracker::Frame &pbFrameData = bboxMessage.frame(i);
|
|
|
|
|
|
|
|
|
|
// Get frame number
|
|
|
|
|
size_t frame_number = pbFrameData.id();
|
|
|
|
|
|
|
|
|
|
// Get bounding box data from current frame
|
|
|
|
|
const libopenshottracker::Frame::Box &box = pbFrameData.bounding_box();
|
|
|
|
|
|
2020-12-14 18:08:44 -03:00
|
|
|
float width = box.x2() - box.x1();
|
|
|
|
|
float height = box.y2() - box.y1();
|
|
|
|
|
float cx = box.x1() + width/2;
|
|
|
|
|
float cy = box.y1() + height/2;
|
|
|
|
|
float angle = 0.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( (cx >= 0.0) && (cy >= 0.0) && (width >= 0.0) && (height >= 0.0) )
|
2020-12-12 20:23:34 -03:00
|
|
|
{
|
|
|
|
|
// The bounding-box properties are valid, so add it to the BoxVec map
|
2020-12-14 18:08:44 -03:00
|
|
|
this->AddBox(frame_number, cx, cy, width, height, angle);
|
2020-12-12 20:23:34 -03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Show the time stamp from the last update in tracker data file
|
|
|
|
|
if (bboxMessage.has_last_updated())
|
|
|
|
|
{
|
|
|
|
|
cout << " Loaded Data. Saved Time Stamp: " << TimeUtil::ToString(bboxMessage.last_updated()) << endl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Delete all global objects allocated by libprotobuf.
|
|
|
|
|
google::protobuf::ShutdownProtobufLibrary();
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2020-11-12 21:25:27 -03:00
|
|
|
|
|
|
|
|
// Generate JSON string of this object
|
2020-12-12 20:23:34 -03:00
|
|
|
std::string KeyFrameBBox::Json()
|
|
|
|
|
{
|
|
|
|
|
// Return formatted string
|
|
|
|
|
return JsonValue().toStyledString();
|
2020-11-12 21:25:27 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Generate Json::Value for this object
|
2020-12-12 20:23:34 -03:00
|
|
|
Json::Value KeyFrameBBox::JsonValue()
|
|
|
|
|
{
|
|
|
|
|
// Create root json object
|
|
|
|
|
Json::Value root;
|
2020-11-12 21:25:27 -03:00
|
|
|
|
|
|
|
|
root["BaseFPS"]["num"] = BaseFps.num;
|
2020-12-12 20:23:34 -03:00
|
|
|
root["BaseFPS"]["den"] = BaseFps.den;
|
2020-11-12 21:25:27 -03:00
|
|
|
root["TimeScale"] = this->TimeScale;
|
2020-12-12 20:23:34 -03:00
|
|
|
root["Boxes"] = Json::Value(Json::arrayValue);
|
2020-11-12 21:25:27 -03:00
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Loop through the BoxVec map and save the BBox data
|
|
|
|
|
for (auto const &x : BoxVec)
|
|
|
|
|
{
|
|
|
|
|
Json::Value box;
|
|
|
|
|
box["time"] = x.first;
|
|
|
|
|
box["data"] = x.second.JsonValue();
|
|
|
|
|
root["Boxes"].append(box);
|
2020-11-12 21:25:27 -03:00
|
|
|
}
|
2020-12-12 20:23:34 -03:00
|
|
|
// Get the Keyframe's Json strings
|
2020-11-12 21:25:27 -03:00
|
|
|
root["delta_x"] = delta_x.JsonValue();
|
|
|
|
|
root["delta_y"] = delta_y.JsonValue();
|
|
|
|
|
root["scale_x"] = scale_x.JsonValue();
|
|
|
|
|
root["scale_y"] = scale_y.JsonValue();
|
|
|
|
|
root["rotation"] = rotation.JsonValue();
|
2020-12-12 20:23:34 -03:00
|
|
|
|
|
|
|
|
// return JsonValue
|
|
|
|
|
return root;
|
2020-11-12 21:25:27 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Load JSON string into this object
|
2020-12-12 20:23:34 -03:00
|
|
|
void KeyFrameBBox::SetJson(const std::string value)
|
|
|
|
|
{
|
|
|
|
|
// Parse JSON string into JSON objects
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
const Json::Value root = openshot::stringToJson(value);
|
|
|
|
|
// Set all values that match
|
|
|
|
|
SetJsonValue(root);
|
|
|
|
|
}
|
|
|
|
|
catch (const std::exception &e)
|
|
|
|
|
{
|
|
|
|
|
// Error parsing JSON (or missing keys)
|
|
|
|
|
throw InvalidJSON("JSON is invalid (missing keys or invalid data types)");
|
|
|
|
|
}
|
|
|
|
|
return;
|
2020-11-12 21:25:27 -03:00
|
|
|
}
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
// Clear the BoxVec map
|
|
|
|
|
void KeyFrameBBox::clear()
|
|
|
|
|
{
|
|
|
|
|
BoxVec.clear();
|
2020-11-12 21:25:27 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Load Json::Value into this object
|
2020-12-12 20:23:34 -03:00
|
|
|
void KeyFrameBBox::SetJsonValue(const Json::Value root)
|
|
|
|
|
{
|
|
|
|
|
// Clear BoxVec
|
|
|
|
|
this->clear();
|
2020-11-12 21:25:27 -03:00
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
if (!root["BaseFPS"].isNull() && root["BaseFPS"].isObject())
|
|
|
|
|
{
|
|
|
|
|
// Set the BaseFps by the given JSON object
|
2020-11-12 21:25:27 -03:00
|
|
|
if (!root["BaseFPS"]["num"].isNull())
|
2020-12-12 20:23:34 -03:00
|
|
|
BaseFps.num = (int)root["BaseFPS"]["num"].asInt();
|
2020-11-12 21:25:27 -03:00
|
|
|
if (!root["BaseFPS"]["den"].isNull())
|
2020-12-12 20:23:34 -03:00
|
|
|
BaseFps.den = (int)root["BaseFPS"]["den"].asInt();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!root["TimeScale"].isNull())
|
|
|
|
|
{
|
|
|
|
|
// Set the TimeScale by the given JSON object
|
|
|
|
|
double scale = (double)root["TimeScale"].asDouble();
|
2020-11-12 21:33:53 -03:00
|
|
|
this->ScalePoints(scale);
|
2020-12-12 20:23:34 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!root["Boxes"].isNull())
|
|
|
|
|
{
|
|
|
|
|
// Loop through the BBoxes data
|
|
|
|
|
for (const auto existing_point : root["Boxes"])
|
|
|
|
|
{
|
|
|
|
|
// Insert BBox into the BoxVec map
|
2020-11-12 21:25:27 -03:00
|
|
|
BBox box;
|
2020-12-12 20:23:34 -03:00
|
|
|
box.SetJsonValue(existing_point["data"]);
|
|
|
|
|
BoxVec[existing_point["time"].asDouble()] = box;
|
2020-11-12 21:25:27 -03:00
|
|
|
}
|
|
|
|
|
}
|
2020-12-12 20:23:34 -03:00
|
|
|
|
|
|
|
|
// Set the Keyframes by the given JSON object
|
|
|
|
|
if (!root["delta_x"].isNull())
|
|
|
|
|
delta_x.SetJsonValue(root["delta_x"]);
|
|
|
|
|
if (!root["delta_y"].isNull())
|
|
|
|
|
delta_y.SetJsonValue(root["delta_y"]);
|
|
|
|
|
if (!root["scale_x"].isNull())
|
|
|
|
|
scale_x.SetJsonValue(root["scale_x"]);
|
|
|
|
|
if (!root["scale_y"].isNull())
|
|
|
|
|
scale_y.SetJsonValue(root["scale_y"]);
|
|
|
|
|
if (!root["rotation"].isNull())
|
|
|
|
|
rotation.SetJsonValue(root["rotation"]);
|
|
|
|
|
|
2020-11-12 21:25:27 -03:00
|
|
|
return;
|
2020-12-14 18:08:44 -03:00
|
|
|
}
|