You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
224 lines
7.6 KiB
C++
224 lines
7.6 KiB
C++
/**
|
|
* @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/>.
|
|
*/
|
|
|
|
#include "../../include/effects/Tracker.h"
|
|
|
|
using namespace openshot;
|
|
|
|
/// Blank constructor, useful when using Json to load the effect properties
|
|
Tracker::Tracker(std::string clipTrackerDataPath)
|
|
{
|
|
// Init effect properties
|
|
init_effect_details();
|
|
|
|
// Tries to load the tracker data from protobuf
|
|
LoadTrackedData(clipTrackerDataPath);
|
|
}
|
|
|
|
// Default constructor
|
|
Tracker::Tracker(Color color, Keyframe left, Keyframe top, Keyframe right, Keyframe bottom) :
|
|
color(color), left(left), top(top), right(right), bottom(bottom)
|
|
{
|
|
// Init effect properties
|
|
init_effect_details();
|
|
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
|
|
// 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();
|
|
// Draw box on image
|
|
FrameData fd = trackedDataById[frame_number];
|
|
cv::Rect2d box(fd.x1, fd.y1, fd.x2-fd.x1, fd.y2-fd.y1);
|
|
cv::rectangle(frame_image, box, cv::Scalar( 255, 0, 0 ), 2, 1 );
|
|
frame->SetImageCV(frame_image);
|
|
|
|
return frame;
|
|
}
|
|
|
|
bool Tracker::LoadTrackedData(std::string inputFilePath){
|
|
|
|
libopenshottracker::Tracker trackerMessage;
|
|
|
|
{
|
|
// Read the existing tracker message.
|
|
fstream input(inputFilePath, ios::in | ios::binary);
|
|
if (!trackerMessage.ParseFromIstream(&input)) {
|
|
cerr << "Failed to parse protobuf message." << endl;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Make sure the trackedData is empty
|
|
trackedDataById.clear();
|
|
|
|
// Iterate over all frames of the saved message
|
|
for (int i = 0; i < trackerMessage.frame_size(); i++) {
|
|
const libopenshottracker::Frame& pbFrameData = trackerMessage.frame(i);
|
|
|
|
int id = pbFrameData.id();
|
|
float rotation = pbFrameData.rotation();
|
|
|
|
const libopenshottracker::Frame::Box& box = pbFrameData.bounding_box();
|
|
int x1 = box.x1();
|
|
int y1 = box.y1();
|
|
int x2 = box.x2();
|
|
int y2 = box.y2();
|
|
|
|
trackedDataById[id] = FrameData(id, rotation, x1, y1, x2, y2);
|
|
}
|
|
|
|
if (trackerMessage.has_last_updated()) {
|
|
cout << " Loaded Data. Saved Time Stamp: " << TimeUtil::ToString(trackerMessage.last_updated()) << endl;
|
|
}
|
|
|
|
// Delete all global objects allocated by libprotobuf.
|
|
google::protobuf::ShutdownProtobufLibrary();
|
|
|
|
return true;
|
|
}
|
|
|
|
FrameData Tracker::GetTrackedData(int frameId){
|
|
|
|
// Check if the tracker info for the requested frame exists
|
|
if ( trackedDataById.find(frameId) == trackedDataById.end() ) {
|
|
return FrameData();
|
|
} else {
|
|
return trackedDataById[frameId];
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 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
|
|
root["type"] = info.class_name;
|
|
root["color"] = color.JsonValue();
|
|
root["left"] = left.JsonValue();
|
|
root["top"] = top.JsonValue();
|
|
root["right"] = right.JsonValue();
|
|
root["bottom"] = bottom.JsonValue();
|
|
|
|
// 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)");
|
|
}
|
|
}
|
|
|
|
// Load Json::Value into this object
|
|
void Tracker::SetJsonValue(const Json::Value root) {
|
|
|
|
// Set parent data
|
|
EffectBase::SetJsonValue(root);
|
|
|
|
// Set data from Json (if key is found)
|
|
if (!root["color"].isNull())
|
|
color.SetJsonValue(root["color"]);
|
|
if (!root["left"].isNull())
|
|
left.SetJsonValue(root["left"]);
|
|
if (!root["top"].isNull())
|
|
top.SetJsonValue(root["top"]);
|
|
if (!root["right"].isNull())
|
|
right.SetJsonValue(root["right"]);
|
|
if (!root["bottom"].isNull())
|
|
bottom.SetJsonValue(root["bottom"]);
|
|
}
|
|
|
|
// Get all properties for a specific frame
|
|
std::string Tracker::PropertiesJSON(int64_t requested_frame) const {
|
|
|
|
// Generate JSON properties list
|
|
Json::Value root;
|
|
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);
|
|
|
|
// Keyframes
|
|
root["color"] = add_property_json("Bar Color", 0.0, "color", "", NULL, 0, 255, false, requested_frame);
|
|
root["color"]["red"] = add_property_json("Red", color.red.GetValue(requested_frame), "float", "", &color.red, 0, 255, false, requested_frame);
|
|
root["color"]["blue"] = add_property_json("Blue", color.blue.GetValue(requested_frame), "float", "", &color.blue, 0, 255, false, requested_frame);
|
|
root["color"]["green"] = add_property_json("Green", color.green.GetValue(requested_frame), "float", "", &color.green, 0, 255, false, requested_frame);
|
|
root["left"] = add_property_json("Left Size", left.GetValue(requested_frame), "float", "", &left, 0.0, 0.5, false, requested_frame);
|
|
root["top"] = add_property_json("Top Size", top.GetValue(requested_frame), "float", "", &top, 0.0, 0.5, false, requested_frame);
|
|
root["right"] = add_property_json("Right Size", right.GetValue(requested_frame), "float", "", &right, 0.0, 0.5, false, requested_frame);
|
|
root["bottom"] = add_property_json("Bottom Size", bottom.GetValue(requested_frame), "float", "", &bottom, 0.0, 0.5, false, requested_frame);
|
|
|
|
// Return formatted string
|
|
return root.toStyledString();
|
|
}
|