OpenShot Library | libopenshot  0.5.0
Hue.cpp
Go to the documentation of this file.
1 
9 // Copyright (c) 2008-2019 OpenShot Studios, LLC
10 //
11 // SPDX-License-Identifier: LGPL-3.0-or-later
12 
13 #include "Hue.h"
14 #include "Exceptions.h"
15 
16 using namespace openshot;
17 
19 Hue::Hue() : Hue(0.0) {
20  // Init effect properties
21  init_effect_details();
22 }
23 
24 // Default constructor
25 Hue::Hue(Keyframe hue): hue(hue), mask_mode(HUE_MASK_LIMIT_TO_AREA)
26 {
27  // Init effect properties
28  init_effect_details();
29 }
30 
31 // Init effect settings
32 void Hue::init_effect_details()
33 {
36 
38  info.class_name = "Hue";
39  info.name = "Hue";
40  info.description = "Adjust the hue / color of the frame's image.";
41  info.has_audio = false;
42  info.has_video = true;
43 }
44 
45 // This method is required for all derived classes of EffectBase, and returns a
46 // modified openshot::Frame object
47 std::shared_ptr<openshot::Frame> Hue::GetFrame(std::shared_ptr<openshot::Frame> frame, int64_t frame_number)
48 {
49  // Get the frame's image
50  std::shared_ptr<QImage> frame_image = frame->GetImage();
51 
52  int pixel_count = frame_image->width() * frame_image->height();
53 
54  // Get the current hue percentage shift amount, and convert to degrees
55  double degrees = 360.0 * hue.GetValue(frame_number);
56  float cosA = cos(degrees*3.14159265f/180);
57  float sinA = sin(degrees*3.14159265f/180);
58 
59  // Calculate a rotation matrix for the RGB colorspace (based on the current hue shift keyframe value)
60  float matrix[3] = {
61  cosA + (1.0f - cosA) / 3.0f,
62  1.0f/3.0f * (1.0f - cosA) - sqrtf(1.0f/3.0f) * sinA,
63  1.0f/3.0f * (1.0f - cosA) + sqrtf(1.0f/3.0f) * sinA
64  };
65 
66  // Loop through pixels
67  unsigned char *pixels = (unsigned char *) frame_image->bits();
68 
69  #pragma omp parallel for shared (pixels)
70  for (int pixel = 0; pixel < pixel_count; ++pixel)
71  {
72  // Calculate alpha % (to be used for removing pre-multiplied alpha value)
73  int A = pixels[pixel * 4 + 3];
74  float alpha_percent = A / 255.0;
75 
76  // Get RGB values, and remove pre-multiplied alpha
77  int R = pixels[pixel * 4 + 0] / alpha_percent;
78  int G = pixels[pixel * 4 + 1] / alpha_percent;
79  int B = pixels[pixel * 4 + 2] / alpha_percent;
80 
81  // Multiply each color by the hue rotation matrix
82  pixels[pixel * 4] = constrain(R * matrix[0] + G * matrix[1] + B * matrix[2]);
83  pixels[pixel * 4 + 1] = constrain(R * matrix[2] + G * matrix[0] + B * matrix[1]);
84  pixels[pixel * 4 + 2] = constrain(R * matrix[1] + G * matrix[2] + B * matrix[0]);
85 
86  // Pre-multiply the alpha back into the color channels
87  pixels[pixel * 4 + 0] *= alpha_percent;
88  pixels[pixel * 4 + 1] *= alpha_percent;
89  pixels[pixel * 4 + 2] *= alpha_percent;
90  }
91 
92  // return the modified frame
93  return frame;
94 }
95 
96 bool Hue::UseCustomMaskBlend(int64_t frame_number) const {
97  (void) frame_number;
99 }
100 
101 void Hue::ApplyCustomMaskBlend(std::shared_ptr<QImage> original_image, std::shared_ptr<QImage> effected_image,
102  std::shared_ptr<QImage> mask_image, int64_t frame_number) const {
103  (void) frame_number;
104  if (!original_image || !effected_image || !mask_image)
105  return;
106  if (original_image->size() != effected_image->size() || effected_image->size() != mask_image->size())
107  return;
108 
109  unsigned char* original_pixels = reinterpret_cast<unsigned char*>(original_image->bits());
110  unsigned char* effected_pixels = reinterpret_cast<unsigned char*>(effected_image->bits());
111  unsigned char* mask_pixels = reinterpret_cast<unsigned char*>(mask_image->bits());
112  const int pixel_count = effected_image->width() * effected_image->height();
113 
114  #pragma omp parallel for schedule(static)
115  for (int i = 0; i < pixel_count; ++i) {
116  const int idx = i * 4;
117  float factor = static_cast<float>(qGray(mask_pixels[idx], mask_pixels[idx + 1], mask_pixels[idx + 2])) / 255.0f;
118  if (mask_invert)
119  factor = 1.0f - factor;
120  factor = factor * factor;
121  const float inverse = 1.0f - factor;
122 
123  effected_pixels[idx] = static_cast<unsigned char>(
124  (original_pixels[idx] * inverse) + (effected_pixels[idx] * factor));
125  effected_pixels[idx + 1] = static_cast<unsigned char>(
126  (original_pixels[idx + 1] * inverse) + (effected_pixels[idx + 1] * factor));
127  effected_pixels[idx + 2] = static_cast<unsigned char>(
128  (original_pixels[idx + 2] * inverse) + (effected_pixels[idx + 2] * factor));
129  effected_pixels[idx + 3] = original_pixels[idx + 3];
130  }
131 }
132 
133 // Generate JSON string of this object
134 std::string Hue::Json() const {
135 
136  // Return formatted string
137  return JsonValue().toStyledString();
138 }
139 
140 // Generate Json::Value for this object
141 Json::Value Hue::JsonValue() const {
142 
143  // Create root json object
144  Json::Value root = EffectBase::JsonValue(); // get parent properties
145  root["type"] = info.class_name;
146  root["hue"] = hue.JsonValue();
147  root["mask_mode"] = mask_mode;
148 
149  // return JsonValue
150  return root;
151 }
152 
153 // Load JSON string into this object
154 void Hue::SetJson(const std::string value) {
155 
156  // Parse JSON string into JSON objects
157  try
158  {
159  const Json::Value root = openshot::stringToJson(value);
160  // Set all values that match
161  SetJsonValue(root);
162  }
163  catch (const std::exception& e)
164  {
165  // Error parsing JSON (or missing keys)
166  throw InvalidJSON("JSON is invalid (missing keys or invalid data types)");
167  }
168 }
169 
170 // Load Json::Value into this object
171 void Hue::SetJsonValue(const Json::Value root) {
172 
173  // Set parent data
175 
176  // Set data from Json (if key is found)
177  if (!root["hue"].isNull())
178  hue.SetJsonValue(root["hue"]);
179  if (!root["mask_mode"].isNull())
180  mask_mode = root["mask_mode"].asInt();
181 }
182 
183 // Get all properties for a specific frame
184 std::string Hue::PropertiesJSON(int64_t requested_frame) const {
185 
186  // Generate JSON properties list
187  Json::Value root = BasePropertiesJSON(requested_frame);
188 
189  // Keyframes
190  root["hue"] = add_property_json("Hue", hue.GetValue(requested_frame), "float", "", &hue, 0.0, 1.0, false, requested_frame);
191  root["mask_mode"] = add_property_json("Mask Mode", mask_mode, "int", "", NULL, 0, 1, false, requested_frame);
192  root["mask_mode"]["choices"].append(add_property_choice_json("Limit to Mask", HUE_MASK_LIMIT_TO_AREA, mask_mode));
193  root["mask_mode"]["choices"].append(add_property_choice_json("Vary Strength", HUE_MASK_VARY_STRENGTH, mask_mode));
194 
195  // Return formatted string
196  return root.toStyledString();
197 }
openshot::ClipBase::add_property_json
Json::Value add_property_json(std::string name, float value, std::string type, std::string memo, const Keyframe *keyframe, float min_value, float max_value, bool readonly, int64_t requested_frame) const
Generate JSON for a property.
Definition: ClipBase.cpp:96
openshot::stringToJson
const Json::Value stringToJson(const std::string value)
Definition: Json.cpp:16
openshot::EffectBase::info
EffectInfoStruct info
Information about the current effect.
Definition: EffectBase.h:110
openshot::EffectBase::mask_invert
bool mask_invert
Invert grayscale mask values before blending.
Definition: EffectBase.h:111
openshot
This namespace is the default namespace for all code in the openshot library.
Definition: Compressor.h:28
openshot::ClipBase::add_property_choice_json
Json::Value add_property_choice_json(std::string name, int value, int selected_value) const
Generate JSON choice for a property (dropdown properties)
Definition: ClipBase.cpp:132
openshot::EffectBase::JsonValue
virtual Json::Value JsonValue() const
Generate Json::Value for this object.
Definition: EffectBase.cpp:96
openshot::Hue::SetJsonValue
void SetJsonValue(const Json::Value root) override
Load Json::Value into this object.
Definition: Hue.cpp:171
openshot::Hue::JsonValue
Json::Value JsonValue() const override
Generate Json::Value for this object.
Definition: Hue.cpp:141
openshot::Keyframe::SetJsonValue
void SetJsonValue(const Json::Value root)
Load Json::Value into this object.
Definition: KeyFrame.cpp:372
openshot::Hue::ApplyCustomMaskBlend
void ApplyCustomMaskBlend(std::shared_ptr< QImage > original_image, std::shared_ptr< QImage > effected_image, std::shared_ptr< QImage > mask_image, int64_t frame_number) const override
Optional override for effects with custom mask implementation.
Definition: Hue.cpp:101
openshot::Keyframe::JsonValue
Json::Value JsonValue() const
Generate Json::Value for this object.
Definition: KeyFrame.cpp:339
openshot::Hue::PropertiesJSON
std::string PropertiesJSON(int64_t requested_frame) const override
Definition: Hue.cpp:184
openshot::EffectBase::BasePropertiesJSON
Json::Value BasePropertiesJSON(int64_t requested_frame) const
Generate JSON object of base properties (recommended to be used by all effects)
Definition: EffectBase.cpp:236
openshot::Hue::hue
Keyframe hue
Shift the hue coordinates (left or right)
Definition: Hue.h:51
openshot::Keyframe
A Keyframe is a collection of Point instances, which is used to vary a number or property over time.
Definition: KeyFrame.h:53
openshot::Hue::UseCustomMaskBlend
bool UseCustomMaskBlend(int64_t frame_number) const override
Optional override for effects that need custom mask behavior.
Definition: Hue.cpp:96
openshot::Hue::mask_mode
int mask_mode
Mask behavior mode for this effect.
Definition: Hue.h:52
openshot::InvalidJSON
Exception for invalid JSON.
Definition: Exceptions.h:223
openshot::Hue::GetFrame
std::shared_ptr< openshot::Frame > GetFrame(int64_t frame_number) override
This method is required for all derived classes of ClipBase, and returns a new openshot::Frame object...
Definition: Hue.h:68
openshot::Hue::Json
std::string Json() const override
Generate JSON string of this object.
Definition: Hue.cpp:134
openshot::EffectBase::InitEffectInfo
void InitEffectInfo()
Definition: EffectBase.cpp:37
openshot::EffectInfoStruct::has_audio
bool has_audio
Determines if this effect manipulates the audio of a frame.
Definition: EffectBase.h:44
openshot::Hue::Hue
Hue()
Default constructor, useful when using Json to load the effect properties.
Definition: Hue.cpp:19
openshot::Hue
This class shifts the hue of an image, and can be animated with openshot::Keyframe curves over time.
Definition: Hue.h:39
Hue.h
Header file for Hue effect class.
openshot::Hue::SetJson
void SetJson(const std::string value) override
Load JSON string into this object.
Definition: Hue.cpp:154
openshot::EffectInfoStruct::class_name
std::string class_name
The class name of the effect.
Definition: EffectBase.h:39
openshot::EffectInfoStruct::description
std::string description
The description of this effect and what it does.
Definition: EffectBase.h:41
openshot::EffectInfoStruct::has_video
bool has_video
Determines if this effect manipulates the image of a frame.
Definition: EffectBase.h:43
openshot::HUE_MASK_VARY_STRENGTH
@ HUE_MASK_VARY_STRENGTH
Definition: Hue.h:30
openshot::EffectBase::constrain
int constrain(int color_value)
Constrain a color value from 0 to 255.
Definition: EffectBase.cpp:77
openshot::EffectInfoStruct::name
std::string name
The name of the effect.
Definition: EffectBase.h:40
Exceptions.h
Header file for all Exception classes.
openshot::HUE_MASK_LIMIT_TO_AREA
@ HUE_MASK_LIMIT_TO_AREA
Definition: Hue.h:29
openshot::EffectBase::SetJsonValue
virtual void SetJsonValue(const Json::Value root)
Load Json::Value into this object.
Definition: EffectBase.cpp:139
openshot::Keyframe::GetValue
double GetValue(int64_t index) const
Get the value at a specific index.
Definition: KeyFrame.cpp:258