You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
185 lines
6.7 KiB
C++
185 lines
6.7 KiB
C++
/**
|
|
* @file
|
|
* @brief Source file for ChromaKey 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 "ChromaKey.h"
|
|
#include "Exceptions.h"
|
|
|
|
using namespace openshot;
|
|
|
|
/// Blank constructor, useful when using Json to load the effect properties
|
|
ChromaKey::ChromaKey() : fuzz(5.0) {
|
|
// Init default color
|
|
color = Color();
|
|
|
|
// Init effect properties
|
|
init_effect_details();
|
|
}
|
|
|
|
// Default constructor, which takes an openshot::Color object and a 'fuzz' factor, which
|
|
// is used to determine how similar colored pixels are matched. The higher the fuzz, the
|
|
// more colors are matched.
|
|
ChromaKey::ChromaKey(Color color, Keyframe fuzz) : color(color), fuzz(fuzz)
|
|
{
|
|
// Init effect properties
|
|
init_effect_details();
|
|
}
|
|
|
|
// Init effect settings
|
|
void ChromaKey::init_effect_details()
|
|
{
|
|
/// Initialize the values of the EffectInfo struct.
|
|
InitEffectInfo();
|
|
|
|
/// Set the effect info
|
|
info.class_name = "ChromaKey";
|
|
info.name = "Chroma Key (Greenscreen)";
|
|
info.description = "Replaces the color (or chroma) of the frame with transparency (i.e. keys out the color).";
|
|
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<openshot::Frame> ChromaKey::GetFrame(std::shared_ptr<openshot::Frame> frame, int64_t frame_number)
|
|
{
|
|
// Determine the current HSL (Hue, Saturation, Lightness) for the Chrome
|
|
int threshold = fuzz.GetInt(frame_number);
|
|
long mask_R = color.red.GetInt(frame_number);
|
|
long mask_G = color.green.GetInt(frame_number);
|
|
long mask_B = color.blue.GetInt(frame_number);
|
|
|
|
// Get source image's pixels
|
|
std::shared_ptr<QImage> image = frame->GetImage();
|
|
unsigned char *pixels = (unsigned char *) image->bits();
|
|
|
|
// Loop through pixels
|
|
for (int pixel = 0, byte_index=0; pixel < image->width() * image->height(); pixel++, byte_index+=4)
|
|
{
|
|
// Get the RGB values from the pixel
|
|
// Remove the premultiplied alpha values from R,G,B
|
|
float A = float(pixels[byte_index + 3]);
|
|
unsigned char R = (pixels[byte_index] / A) * 255.0;
|
|
unsigned char G = (pixels[byte_index + 1] / A) * 255.0;
|
|
unsigned char B = (pixels[byte_index + 2] / A) * 255.0;
|
|
|
|
// Get distance between mask color and pixel color
|
|
long distance = Color::GetDistance((long)R, (long)G, (long)B, mask_R, mask_G, mask_B);
|
|
|
|
if (distance <= threshold) {
|
|
// MATCHED - Make pixel transparent
|
|
// Due to premultiplied alpha, we must also zero out
|
|
// the individual color channels (or else artifacts are left behind)
|
|
pixels[byte_index] = 0;
|
|
pixels[byte_index + 1] = 0;
|
|
pixels[byte_index + 2] = 0;
|
|
pixels[byte_index + 3] = 0;
|
|
}
|
|
}
|
|
|
|
// return the modified frame
|
|
return frame;
|
|
}
|
|
|
|
// Generate JSON string of this object
|
|
std::string ChromaKey::Json() const {
|
|
|
|
// Return formatted string
|
|
return JsonValue().toStyledString();
|
|
}
|
|
|
|
// Generate Json::Value for this object
|
|
Json::Value ChromaKey::JsonValue() const {
|
|
|
|
// Create root json object
|
|
Json::Value root = EffectBase::JsonValue(); // get parent properties
|
|
root["type"] = info.class_name;
|
|
root["color"] = color.JsonValue();
|
|
root["fuzz"] = fuzz.JsonValue();
|
|
|
|
// return JsonValue
|
|
return root;
|
|
}
|
|
|
|
// Load JSON string into this object
|
|
void ChromaKey::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 ChromaKey::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["fuzz"].isNull())
|
|
fuzz.SetJsonValue(root["fuzz"]);
|
|
}
|
|
|
|
// Get all properties for a specific frame
|
|
std::string ChromaKey::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, 30 * 60 * 60 * 48, 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, 30 * 60 * 60 * 48, false, requested_frame);
|
|
root["end"] = add_property_json("End", End(), "float", "", NULL, 0, 30 * 60 * 60 * 48, false, requested_frame);
|
|
root["duration"] = add_property_json("Duration", Duration(), "float", "", NULL, 0, 30 * 60 * 60 * 48, true, requested_frame);
|
|
|
|
// Keyframes
|
|
root["color"] = add_property_json("Key Color", 0.0, "color", "", &color.red, 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["fuzz"] = add_property_json("Fuzz", fuzz.GetValue(requested_frame), "float", "", &fuzz, 0, 125, false, requested_frame);
|
|
|
|
// Set the parent effect which properties this effect will inherit
|
|
root["parent_effect_id"] = add_property_json("Parent", 0.0, "string", info.parent_effect_id, NULL, -1, -1, false, requested_frame);
|
|
|
|
// Return formatted string
|
|
return root.toStyledString();
|
|
}
|