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"
|
2021-01-28 20:15:25 -05:00
|
|
|
#include "Exceptions.h"
|
2021-01-13 20:22:17 -03:00
|
|
|
#include <google/protobuf/util/time_util.h>
|
2020-12-22 21:32:36 -03:00
|
|
|
#include "Timeline.h"
|
2020-07-08 11:49:46 -03:00
|
|
|
|
2021-02-04 15:45:33 -03:00
|
|
|
#include <QImage>
|
|
|
|
|
#include <QPainter>
|
|
|
|
|
#include <QRectF>
|
|
|
|
|
|
2021-01-13 12:08:33 -05:00
|
|
|
using namespace std;
|
2020-07-08 11:49:46 -03:00
|
|
|
using namespace openshot;
|
2021-01-13 20:22:17 -03:00
|
|
|
using google::protobuf::util::TimeUtil;
|
2020-07-08 11:49:46 -03:00
|
|
|
|
|
|
|
|
/// Blank constructor, useful when using Json to load the effect properties
|
2020-12-12 20:23:34 -03:00
|
|
|
Tracker::Tracker(std::string clipTrackerDataPath)
|
2021-01-13 12:08:33 -05:00
|
|
|
{
|
2020-07-08 11:49:46 -03:00
|
|
|
// Init effect properties
|
|
|
|
|
init_effect_details();
|
2021-01-18 14:52:01 -03:00
|
|
|
// Instantiate a TrackedObjectBBox object and point to it
|
|
|
|
|
TrackedObjectBBox trackedDataObject;
|
|
|
|
|
trackedData = std::make_shared<TrackedObjectBBox>(trackedDataObject);
|
2020-12-22 21:32:36 -03:00
|
|
|
// Tries to load the tracked object's data from protobuf file
|
|
|
|
|
trackedData->LoadBoxData(clipTrackerDataPath);
|
2021-01-18 14:52:01 -03:00
|
|
|
ClipBase* parentClip = this->ParentClip();
|
|
|
|
|
trackedData->ParentClip(parentClip);
|
2021-01-22 19:00:44 -03:00
|
|
|
// Insert TrackedObject with index 0 to the trackedObjects map
|
|
|
|
|
trackedObjects.insert({0, trackedData});
|
2020-07-08 11:49:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Default constructor
|
2020-12-12 20:23:34 -03:00
|
|
|
Tracker::Tracker()
|
2020-07-08 11:49:46 -03:00
|
|
|
{
|
|
|
|
|
// Init effect properties
|
|
|
|
|
init_effect_details();
|
2021-01-18 14:52:01 -03:00
|
|
|
// Instantiate a TrackedObjectBBox object and point to it
|
|
|
|
|
TrackedObjectBBox trackedDataObject;
|
|
|
|
|
trackedData = std::make_shared<TrackedObjectBBox>(trackedDataObject);
|
|
|
|
|
ClipBase* parentClip = this->ParentClip();
|
|
|
|
|
trackedData->ParentClip(parentClip);
|
2021-01-22 19:00:44 -03:00
|
|
|
// Insert TrackedObject with index 0 to the trackedObjects map
|
|
|
|
|
trackedObjects.insert({0, trackedData});
|
2020-07-08 11:49:46 -03:00
|
|
|
}
|
|
|
|
|
|
2020-11-12 21:35:47 -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;
|
2021-01-22 19:00:44 -03:00
|
|
|
info.has_tracked_object = true;
|
2020-11-12 21:25:27 -03:00
|
|
|
|
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();
|
2020-07-09 20:26:01 -03:00
|
|
|
|
2021-02-04 15:45:33 -03:00
|
|
|
// Initialize the Qt rectangle that will hold the positions of the bounding-box
|
|
|
|
|
QRectF boxRect;
|
|
|
|
|
// Initialize the image of the TrackedObject child clip
|
|
|
|
|
std::shared_ptr<QImage> childClipImage = nullptr;
|
|
|
|
|
|
2020-07-15 10:29:08 -03:00
|
|
|
// Check if frame isn't NULL
|
2021-03-18 13:13:34 -03:00
|
|
|
if(!frame_image.empty() &&
|
|
|
|
|
trackedData->Contains(frame_number) &&
|
|
|
|
|
trackedData->visible.GetValue(frame_number) == 1)
|
2020-12-14 18:08:44 -03:00
|
|
|
{
|
2021-03-18 13:13:34 -03:00
|
|
|
// 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);
|
|
|
|
|
|
2020-07-15 10:29:08 -03:00
|
|
|
// Check if track data exists for the requested frame
|
2021-03-18 13:13:34 -03:00
|
|
|
if (trackedData->draw_box.GetValue(frame_number) == 1)
|
2020-12-14 18:08:44 -03:00
|
|
|
{
|
2021-03-27 22:50:01 -03:00
|
|
|
std::vector<int> stroke_rgba = trackedData->stroke.GetColorRGBA(frame_number);
|
|
|
|
|
std::vector<int> bg_rgba = trackedData->background.GetColorRGBA(frame_number);
|
|
|
|
|
|
2020-12-14 18:08:44 -03:00
|
|
|
// 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
|
2021-03-27 22:50:01 -03:00
|
|
|
cv::Point2f vertices2f[4];
|
|
|
|
|
box.points(vertices2f);
|
|
|
|
|
|
|
|
|
|
cv::Point vertices[4];
|
|
|
|
|
for(int i = 0; i < 4; ++i){
|
|
|
|
|
vertices[i] = vertices2f[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cv::fillConvexPoly(frame_image, vertices, 4, cv::Scalar(bg_rgba[2],bg_rgba[1],bg_rgba[0]), cv::LINE_AA);
|
|
|
|
|
|
|
|
|
|
// const Point *pts = (const cv::Point*) cv::Mat(vertices).data;
|
|
|
|
|
// cv::polylines(frame_image, &pts, 4, 1, true, (255, 0, 255), cv::Scalar(stroke_rgba[2],stroke_rgba[1],stroke_rgba[0]), cv::LINE_AA);
|
|
|
|
|
|
2020-12-14 18:08:44 -03:00
|
|
|
// Draw the bounding-box on the image
|
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
|
{
|
2021-03-27 22:50:01 -03:00
|
|
|
cv::line(frame_image, vertices2f[i], vertices2f[(i+1)%4], cv::Scalar(stroke_rgba[2],stroke_rgba[1],stroke_rgba[0]),
|
|
|
|
|
trackedData->stroke_width.GetValue(frame_number));
|
2020-12-14 18:08:44 -03:00
|
|
|
}
|
2021-03-18 13:13:34 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get the image of the Tracked Object' child clip
|
|
|
|
|
if (trackedData->ChildClipId() != "None"){
|
|
|
|
|
// Cast the parent timeline of this effect
|
|
|
|
|
Timeline* parentTimeline = (Timeline *) ParentTimeline();
|
|
|
|
|
if (parentTimeline){
|
|
|
|
|
// Get the Tracked Object's child clip
|
|
|
|
|
Clip* childClip = parentTimeline->GetClip(trackedData->ChildClipId());
|
|
|
|
|
if (childClip){
|
|
|
|
|
// Get the image of the child clip for this frame
|
|
|
|
|
std::shared_ptr<Frame> childClipFrame = childClip->GetFrame(frame_number);
|
|
|
|
|
childClipImage = childClipFrame->GetImage();
|
2021-02-04 15:45:33 -03:00
|
|
|
|
2021-03-18 13:13:34 -03:00
|
|
|
// Set the Qt rectangle with the bounding-box properties
|
|
|
|
|
boxRect.setRect( (int)((fd.cx-fd.width/2)*fw), (int)((fd.cy - fd.height/2)*fh), (int)(fd.width*fw), (int)(fd.height*fh) );
|
2021-02-04 15:45:33 -03:00
|
|
|
}
|
|
|
|
|
}
|
2021-03-18 13:13:34 -03:00
|
|
|
}
|
|
|
|
|
|
2020-07-15 10:29:08 -03:00
|
|
|
}
|
2020-07-09 20:26:01 -03:00
|
|
|
|
|
|
|
|
// Set image with drawn box to frame
|
2020-07-15 10:29:08 -03:00
|
|
|
// 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);
|
|
|
|
|
|
2021-02-04 15:45:33 -03:00
|
|
|
// Set the bounding-box image with the Tracked Object's child clip image
|
|
|
|
|
if (childClipImage){
|
|
|
|
|
// Get the frame image
|
|
|
|
|
QImage frameImage = *(frame->GetImage());
|
|
|
|
|
|
|
|
|
|
// Set a Qt painter to the frame image
|
|
|
|
|
QPainter painter(&frameImage);
|
|
|
|
|
|
|
|
|
|
// Draw the child clip image inside the bounding-box
|
|
|
|
|
painter.drawImage(boxRect, *childClipImage, QRectF(0, 0, frameImage.size().width(), frameImage.size().height()));
|
|
|
|
|
|
|
|
|
|
// Set the frame image as the composed image
|
|
|
|
|
frame->AddImage(std::make_shared<QImage>(frameImage));
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-08 11:49:46 -03:00
|
|
|
return frame;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 17:18:23 -03:00
|
|
|
// Get the indexes and IDs of all visible objects in the given frame
|
|
|
|
|
std::string Tracker::GetVisibleObjects(int64_t frame_number) const{
|
|
|
|
|
|
|
|
|
|
// Initialize the JSON objects
|
|
|
|
|
Json::Value root;
|
|
|
|
|
root["visible_objects_index"] = Json::Value(Json::arrayValue);
|
|
|
|
|
root["visible_objects_id"] = Json::Value(Json::arrayValue);
|
|
|
|
|
|
|
|
|
|
// Iterate through the tracked objects
|
|
|
|
|
for (const auto& trackedObject : trackedObjects){
|
|
|
|
|
// Get the tracked object JSON properties for this frame
|
|
|
|
|
Json::Value trackedObjectJSON = trackedObject.second->PropertiesJSON(frame_number);
|
|
|
|
|
if (trackedObjectJSON["visible"]["value"].asBool()){
|
|
|
|
|
// Save the object's index and ID if it's visible in this frame
|
|
|
|
|
root["visible_objects_index"].append(trackedObject.first);
|
|
|
|
|
root["visible_objects_id"].append(trackedObject.second->Id());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return root.toStyledString();
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-08 11:49:46 -03:00
|
|
|
// 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
|
2020-12-22 21:32:36 -03:00
|
|
|
|
|
|
|
|
// Save the effect's properties on root
|
2020-07-08 11:49:46 -03:00
|
|
|
root["type"] = info.class_name;
|
2020-07-16 21:10:02 -03:00
|
|
|
root["protobuf_data_path"] = protobuf_data_path;
|
2020-11-12 21:25:27 -03:00
|
|
|
root["BaseFPS"]["num"] = BaseFPS.num;
|
|
|
|
|
root["BaseFPS"]["den"] = BaseFPS.den;
|
2020-11-12 21:33:53 -03:00
|
|
|
root["TimeScale"] = this->TimeScale;
|
2021-01-27 17:18:23 -03:00
|
|
|
root["objects_id"] = Json::Value(Json::arrayValue);
|
2020-12-22 21:32:36 -03:00
|
|
|
|
2021-01-27 17:18:23 -03:00
|
|
|
// Add trackedObjects IDs to JSON
|
2021-01-22 19:47:36 -03:00
|
|
|
for (auto const& trackedObject : trackedObjects){
|
2021-01-27 17:18:23 -03:00
|
|
|
// Get the trackedObject JSON
|
2021-01-22 19:47:36 -03:00
|
|
|
Json::Value trackedObjectJSON = trackedObject.second->JsonValue();
|
2021-01-27 17:18:23 -03:00
|
|
|
root["objects_id"].append(trackedObject.second->Id());
|
2021-01-22 19:47:36 -03:00
|
|
|
// Save the trackedObject JSON on root
|
2021-02-04 15:57:30 -03:00
|
|
|
for (auto const& key : trackedObjectJSON.getMemberNames())
|
|
|
|
|
root[key] = trackedObjectJSON[key];
|
2020-12-22 21:32:36 -03:00
|
|
|
}
|
|
|
|
|
|
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)");
|
|
|
|
|
}
|
2020-12-22 21:32:36 -03:00
|
|
|
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);
|
2020-12-22 21:32:36 -03:00
|
|
|
|
|
|
|
|
if(!root["type"].isNull())
|
|
|
|
|
info.class_name = root["type"].asString();
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
if (!root["BaseFPS"].isNull() && root["BaseFPS"].isObject())
|
|
|
|
|
{
|
2020-11-12 21:30:11 -03:00
|
|
|
if (!root["BaseFPS"]["num"].isNull())
|
2020-12-12 20:23:34 -03:00
|
|
|
{
|
2020-11-12 21:30:11 -03:00
|
|
|
BaseFPS.num = (int) root["BaseFPS"]["num"].asInt();
|
2020-12-12 20:23:34 -03:00
|
|
|
}
|
2020-11-12 21:30:11 -03:00
|
|
|
if (!root["BaseFPS"]["den"].isNull())
|
2020-12-12 20:23:34 -03:00
|
|
|
{
|
|
|
|
|
BaseFPS.den = (int) root["BaseFPS"]["den"].asInt();
|
|
|
|
|
}
|
2020-11-12 21:30:11 -03:00
|
|
|
}
|
|
|
|
|
|
2020-12-12 20:23:34 -03:00
|
|
|
if (!root["TimeScale"].isNull())
|
2020-11-12 21:33:53 -03:00
|
|
|
TimeScale = (double) root["TimeScale"].asDouble();
|
|
|
|
|
|
2020-07-16 21:10:02 -03:00
|
|
|
// Set data from Json (if key is found)
|
2021-02-04 15:57:30 -03:00
|
|
|
if (!root["protobuf_data_path"].isNull() && protobuf_data_path.size() <= 1)
|
2020-12-12 20:23:34 -03:00
|
|
|
{
|
2021-02-04 15:57:30 -03:00
|
|
|
protobuf_data_path = root["protobuf_data_path"].asString();
|
2020-12-22 21:32:36 -03:00
|
|
|
if(!trackedData->LoadBoxData(protobuf_data_path))
|
2020-12-12 20:23:34 -03:00
|
|
|
{
|
2020-07-16 21:10:02 -03:00
|
|
|
std::cout<<"Invalid protobuf data path";
|
|
|
|
|
protobuf_data_path = "";
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-22 21:32:36 -03:00
|
|
|
|
2021-02-04 15:57:30 -03:00
|
|
|
// Set the tracked object's properties
|
2021-01-22 19:00:44 -03:00
|
|
|
for (auto const& trackedObject : trackedObjects){
|
2021-02-04 15:57:30 -03:00
|
|
|
Json::Value trackedObjectJSON = root;
|
|
|
|
|
if (!root["objects_id"].isNull())
|
|
|
|
|
trackedObjectJSON["box_id"] = root["objects_id"][trackedObject.first].asString();
|
|
|
|
|
trackedObject.second->SetJsonValue(trackedObjectJSON);
|
2021-01-22 19:00:44 -03:00
|
|
|
}
|
2020-12-22 21:32:36 -03:00
|
|
|
|
|
|
|
|
return;
|
2020-07-08 11:49:46 -03:00
|
|
|
}
|
|
|
|
|
|
2020-11-28 18:09:10 -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-12-12 20:23:34 -03:00
|
|
|
|
2020-07-08 11:49:46 -03:00
|
|
|
// Generate JSON properties list
|
2021-01-27 17:18:23 -03:00
|
|
|
Json::Value root;
|
|
|
|
|
|
2021-02-04 15:57:30 -03:00
|
|
|
// Add trackedObject properties to JSON
|
|
|
|
|
for (auto const& trackedObject : trackedObjects)
|
|
|
|
|
root = trackedObject.second->PropertiesJSON(requested_frame);
|
2020-12-12 20:23:34 -03:00
|
|
|
|
2020-12-22 21:32:36 -03:00
|
|
|
// Append effect's properties
|
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();
|
2021-01-27 17:18:23 -03:00
|
|
|
}
|