OpenShot Library | libopenshot  0.6.0
EffectBase.h
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 #ifndef OPENSHOT_EFFECT_BASE_H
14 #define OPENSHOT_EFFECT_BASE_H
15 
16 #include "ClipBase.h"
17 
18 #include "Json.h"
19 #include "TrackedObjectBase.h"
20 
21 #include <QImage>
22 #include <memory>
23 #include <map>
24 #include <string>
25 
26 namespace openshot
27 {
28  class ReaderBase;
29 
38  {
39  std::string class_name;
40  std::string name;
41  std::string description;
42  std::string parent_effect_id;
43  bool has_video;
44  bool has_audio;
47  };
48 
56  class EffectBase : public ClipBase
57  {
58  private:
59  int order;
60  ReaderBase* mask_reader = nullptr;
61  std::shared_ptr<QImage> cached_single_mask_image;
62  int cached_single_mask_width = 0;
63  int cached_single_mask_height = 0;
64 
66  std::shared_ptr<QImage> GetMaskImage(std::shared_ptr<QImage> target_image, int64_t frame_number);
67 
69  void BlendWithMask(std::shared_ptr<QImage> original_image, std::shared_ptr<QImage> effected_image,
70  std::shared_ptr<QImage> mask_image) const;
71 
72  protected:
74 
76  ReaderBase* CreateReaderFromJson(const Json::Value& reader_json) const;
77 
79  int64_t MapMaskFrameNumber(int64_t frame_number);
80 
82  double ResolveMaskHostFps();
83 
85  double ResolveMaskSourceDuration() const;
86 
88  std::shared_ptr<QImage> ResolveMaskImage(std::shared_ptr<QImage> target_image, int64_t frame_number) {
89  return GetMaskImage(target_image, frame_number);
90  }
91 
93  virtual bool UseCustomMaskBlend(int64_t frame_number) const { return false; }
94 
96  virtual void ApplyCustomMaskBlend(std::shared_ptr<QImage> original_image, std::shared_ptr<QImage> effected_image,
97  std::shared_ptr<QImage> mask_image, int64_t frame_number) const {}
98 
100  virtual bool HandlesMaskInternally() const { return false; }
101 
102  public:
105 
107  std::map<int, std::shared_ptr<openshot::TrackedObjectBase> > trackedObjects;
108 
111  bool mask_invert = false;
112 
116  };
117 
122  };
123 
126 
128  void DisplayInfo(std::ostream* out=&std::cout);
129 
131  int constrain(int color_value);
132 
135  void InitEffectInfo();
136 
139 
141  void ParentClip(openshot::ClipBase* new_clip);
142 
144  void SetParentEffect(std::string parentEffect_id);
145 
147  std::string ParentClipId() const;
148 
150  virtual std::string GetVisibleObjects(int64_t frame_number) const {return {}; };
151 
152  // Get and Set JSON methods
153  virtual std::string Json() const;
154  virtual void SetJson(const std::string value);
155  virtual Json::Value JsonValue() const;
156  virtual void SetJsonValue(const Json::Value root);
157 
158  virtual std::string Json(int64_t requested_frame) const{
159  return "";
160  };
161  virtual void SetJson(int64_t requested_frame, const std::string value) {
162  return;
163  };
164 
166  Json::Value JsonInfo() const;
167 
169  Json::Value BasePropertiesJSON(int64_t requested_frame) const;
170 
172  std::shared_ptr<openshot::Frame> ProcessFrame(std::shared_ptr<openshot::Frame> frame, int64_t frame_number);
173 
175  ReaderBase* MaskReader() { return mask_reader; }
176  const ReaderBase* MaskReader() const { return mask_reader; }
177 
179  void MaskReader(ReaderBase* new_reader);
180 
182  int Order() const { return order; }
183 
185  void Order(int new_order) { order = new_order; }
186 
187  virtual ~EffectBase();
188  };
189 
190 }
191 
192 #endif
Header file for ClipBase class.
Header file for JSON class.
Header file for the TrackedObjectBase class.
This abstract class is the base class, used by all clips in libopenshot.
Definition: ClipBase.h:32
This abstract class is the base class, used by all effects in libopenshot.
Definition: EffectBase.h:57
ReaderBase * CreateReaderFromJson(const Json::Value &reader_json) const
Create a reader instance from reader JSON.
Definition: EffectBase.cpp:277
int mask_loop_mode
Behavior when mask range reaches the end.
Definition: EffectBase.h:125
virtual bool UseCustomMaskBlend(int64_t frame_number) const
Optional override for effects that need custom mask behavior.
Definition: EffectBase.h:93
virtual void SetJson(const std::string value)
Load JSON string into this object.
Definition: EffectBase.cpp:122
EffectBase * parentEffect
Parent effect (which properties will set this effect properties)
Definition: EffectBase.h:104
virtual std::string Json(int64_t requested_frame) const
Definition: EffectBase.h:158
Json::Value JsonInfo() const
Generate JSON object of meta data / info.
Definition: EffectBase.cpp:221
virtual bool HandlesMaskInternally() const
Optional override for effects that apply mask processing inside GetFrame().
Definition: EffectBase.h:100
ReaderBase * MaskReader()
Get the common mask reader.
Definition: EffectBase.h:175
virtual void SetJson(int64_t requested_frame, const std::string value)
Definition: EffectBase.h:161
bool mask_invert
Invert grayscale mask values before blending.
Definition: EffectBase.h:111
std::shared_ptr< openshot::Frame > ProcessFrame(std::shared_ptr< openshot::Frame > frame, int64_t frame_number)
Apply effect processing with common mask support (if enabled).
Definition: EffectBase.cpp:514
std::string ParentClipId() const
Return the ID of this effect's parent clip.
Definition: EffectBase.cpp:586
void SetParentEffect(std::string parentEffect_id)
Set the parent effect from which this properties will be set to.
Definition: EffectBase.cpp:561
virtual Json::Value JsonValue() const
Generate Json::Value for this object.
Definition: EffectBase.cpp:96
openshot::ClipBase * ParentClip()
Parent clip object of this effect (which can be unparented and NULL)
Definition: EffectBase.cpp:549
int constrain(int color_value)
Constrain a color value from 0 to 255.
Definition: EffectBase.cpp:77
virtual std::string Json() const
Generate JSON string of this object.
Definition: EffectBase.cpp:89
double ResolveMaskHostFps()
Determine host FPS used to convert timeline frames to mask source FPS.
Definition: EffectBase.cpp:325
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
int mask_time_mode
How effect frames map to mask source frames.
Definition: EffectBase.h:124
virtual 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
Optional override for effects with custom mask implementation.
Definition: EffectBase.h:96
virtual std::string GetVisibleObjects(int64_t frame_number) const
Get the indexes and IDs of all visible objects in the given frame.
Definition: EffectBase.h:150
virtual void SetJsonValue(const Json::Value root)
Load Json::Value into this object.
Definition: EffectBase.cpp:139
const ReaderBase * MaskReader() const
Definition: EffectBase.h:176
int Order() const
Get the order that this effect should be executed.
Definition: EffectBase.h:182
double ResolveMaskSourceDuration() const
Determine mask source duration in seconds.
Definition: EffectBase.cpp:342
void Order(int new_order)
Set the order that this effect should be executed.
Definition: EffectBase.h:185
openshot::ClipBase * clip
Pointer to the parent clip instance (if any)
Definition: EffectBase.h:73
std::shared_ptr< QImage > ResolveMaskImage(std::shared_ptr< QImage > target_image, int64_t frame_number)
Resolve a cached/scaled mask image for the target frame dimensions.
Definition: EffectBase.h:88
EffectInfoStruct info
Information about the current effect.
Definition: EffectBase.h:110
std::map< int, std::shared_ptr< openshot::TrackedObjectBase > > trackedObjects
Map of Tracked Object's by their indices (used by Effects that track objects on clips)
Definition: EffectBase.h:107
int64_t MapMaskFrameNumber(int64_t frame_number)
Convert an effect frame number to a mask source frame number.
Definition: EffectBase.cpp:357
void DisplayInfo(std::ostream *out=&std::cout)
Display effect information in the standard output stream (stdout)
Definition: EffectBase.cpp:62
This abstract class is the base class, used by all readers in libopenshot.
Definition: ReaderBase.h:76
This namespace is the default namespace for all code in the openshot library.
Definition: Compressor.h:29
This struct contains info about an effect, such as the name, video or audio effect,...
Definition: EffectBase.h:38
bool has_video
Determines if this effect manipulates the image of a frame.
Definition: EffectBase.h:43
bool apply_before_clip
Apply effect before we evaluate the clip's keyframes.
Definition: EffectBase.h:46
std::string parent_effect_id
Id of the parent effect (if there is one)
Definition: EffectBase.h:42
bool has_audio
Determines if this effect manipulates the audio of a frame.
Definition: EffectBase.h:44
std::string class_name
The class name of the effect.
Definition: EffectBase.h:39
std::string name
The name of the effect.
Definition: EffectBase.h:40
std::string description
The description of this effect and what it does.
Definition: EffectBase.h:41
bool has_tracked_object
Determines if this effect track objects through the clip.
Definition: EffectBase.h:45