Files
libopenshot/src/effects/Tracker.cpp

231 lines
6.9 KiB
C++
Raw Normal View History

2020-07-08 11:49:46 -03:00
/**
* @file
* @brief Source file for Tracker effect 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/>.
*/
2020-10-20 01:04:59 -03:00
#include "effects/Tracker.h"
#include <google/protobuf/util/time_util.h>
#include "Timeline.h"
2020-07-08 11:49:46 -03:00
using namespace std;
2020-07-08 11:49:46 -03:00
using namespace openshot;
using google::protobuf::util::TimeUtil;
2020-07-08 11:49:46 -03:00
/// Blank constructor, useful when using Json to load the effect properties
Tracker::Tracker(std::string clipTrackerDataPath)
{
2020-07-08 11:49:46 -03:00
// Init effect properties
init_effect_details();
// Instantiate a keyframebbox object and point to it
KeyFrameBBox trackedDataObject;
trackedData = std::make_shared<KeyFrameBBox>(trackedDataObject);
// Tries to load the tracked object's data from protobuf file
trackedData->LoadBoxData(clipTrackerDataPath);
2020-07-08 11:49:46 -03:00
}
// Default constructor
Tracker::Tracker()
2020-07-08 11:49:46 -03:00
{
// Init effect properties
init_effect_details();
// Instantiate a keyframebbox object and point to it
KeyFrameBBox trackedDataObject;
trackedData = std::make_shared<KeyFrameBBox>(trackedDataObject);
2020-07-08 11:49:46 -03:00
}
2020-07-08 11:49:46 -03:00
// Init effect settings
void Tracker::init_effect_details()
{
/// Initialize the values of the EffectInfo struct.
InitEffectInfo();
/// Set the effect info
info.class_name = "Tracker";
info.name = "Tracker";
info.description = "Track the selected bounding box through the video.";
info.has_audio = false;
info.has_video = true;
2020-11-12 21:33:53 -03:00
this->TimeScale = 1.0;
2020-07-08 11:49:46 -03:00
}
// This method is required for all derived classes of EffectBase, and returns a
// modified openshot::Frame object
std::shared_ptr<Frame> Tracker::GetFrame(std::shared_ptr<Frame> frame, int64_t frame_number)
{
// Get the frame's image
cv::Mat frame_image = frame->GetImageCV();
// Check if frame isn't NULL
if(!frame_image.empty())
{
// Check if track data exists for the requested frame
if (trackedData->Contains(frame_number))
{
// Get the width and height of the image
float fw = frame_image.size().width;
float fh = frame_image.size().height;
// Get the bounding-box of given frame
BBox fd = trackedData->GetBox(frame_number);
// Create a rotated rectangle object that holds the bounding box
cv::RotatedRect box ( cv::Point2f( (int)(fd.cx*fw), (int)(fd.cy*fh) ),
cv::Size2f( (int)(fd.width*fw), (int)(fd.height*fh) ),
(int) (fd.angle) );
// Get the bouding box vertices
cv::Point2f vertices[4];
box.points(vertices);
// Draw the bounding-box on the image
for (int i = 0; i < 4; i++)
{
cv::line(frame_image, vertices[i], vertices[(i+1)%4], cv::Scalar(255,0,0), 2);
}
}
}
// Set image with drawn box to frame
// If the input image is NULL or doesn't have tracking data, it's returned as it came
2020-07-08 11:49:46 -03:00
frame->SetImageCV(frame_image);
return frame;
}
// Generate JSON string of this object
std::string Tracker::Json() const {
// Return formatted string
return JsonValue().toStyledString();
}
// Generate Json::Value for this object
Json::Value Tracker::JsonValue() const {
// Create root json object
Json::Value root = EffectBase::JsonValue(); // get parent properties
// Save the effect's properties on root
2020-07-08 11:49:46 -03:00
root["type"] = info.class_name;
root["protobuf_data_path"] = protobuf_data_path;
root["BaseFPS"]["num"] = BaseFPS.num;
root["BaseFPS"]["den"] = BaseFPS.den;
2020-11-12 21:33:53 -03:00
root["TimeScale"] = this->TimeScale;
// Get trackedData JSON
Json::Value trackedDataJSON;
trackedDataJSON = trackedData->JsonValue();
// Save the trackedData properties on root
for (const auto& key : trackedDataJSON.getMemberNames()){
root[key] = trackedDataJSON[key];
}
2020-07-08 11:49:46 -03:00
// return JsonValue
return root;
}
// Load JSON string into this object
void Tracker::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-07-08 11:49:46 -03:00
}
// Load Json::Value into this object
void Tracker::SetJsonValue(const Json::Value root) {
// Set parent data
EffectBase::SetJsonValue(root);
if(!root["type"].isNull())
info.class_name = root["type"].asString();
if (!root["BaseFPS"].isNull() && root["BaseFPS"].isObject())
{
2020-11-12 21:30:11 -03:00
if (!root["BaseFPS"]["num"].isNull())
{
2020-11-12 21:30:11 -03:00
BaseFPS.num = (int) root["BaseFPS"]["num"].asInt();
}
2020-11-12 21:30:11 -03:00
if (!root["BaseFPS"]["den"].isNull())
{
BaseFPS.den = (int) root["BaseFPS"]["den"].asInt();
}
2020-11-12 21:30:11 -03:00
}
if (!root["TimeScale"].isNull())
2020-11-12 21:33:53 -03:00
TimeScale = (double) root["TimeScale"].asDouble();
// Set data from Json (if key is found)
if (!root["protobuf_data_path"].isNull())
{
protobuf_data_path = (root["protobuf_data_path"].asString());
if(!trackedData->LoadBoxData(protobuf_data_path))
{
std::cout<<"Invalid protobuf data path";
protobuf_data_path = "";
}
}
trackedData->SetJsonValue(root);
return;
2020-07-08 11:49:46 -03:00
}
2020-07-08 11:49:46 -03:00
// Get all properties for a specific frame
std::string Tracker::PropertiesJSON(int64_t requested_frame) const {
2020-07-08 11:49:46 -03:00
// Generate JSON properties list
Json::Value root;
root = trackedData->PropertiesJSON(requested_frame);
// Append effect's properties
root["name"] = add_property_json("Tracker", 0.0, "string", "", NULL, -1, -1, true, requested_frame);
2020-07-08 11:49:46 -03:00
root["id"] = add_property_json("ID", 0.0, "string", Id(), NULL, -1, -1, true, requested_frame);
root["position"] = add_property_json("Position", Position(), "float", "", NULL, 0, 1000 * 60 * 30, false, requested_frame);
root["layer"] = add_property_json("Track", Layer(), "int", "", NULL, 0, 20, false, requested_frame);
root["start"] = add_property_json("Start", Start(), "float", "", NULL, 0, 1000 * 60 * 30, false, requested_frame);
root["end"] = add_property_json("End", End(), "float", "", NULL, 0, 1000 * 60 * 30, false, requested_frame);
root["duration"] = add_property_json("Duration", Duration(), "float", "", NULL, 0, 1000 * 60 * 30, true, requested_frame);
// Return formatted string
return root.toStyledString();
}