OpenShot Library | libopenshot  0.4.0
Outline.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_OUTLINE_EFFECT_H
14 #define OPENSHOT_OUTLINE_EFFECT_H
15 
16 #include <Color.h>
17 
18 #include "../EffectBase.h"
19 
20 #include "../Frame.h"
21 #include "../Json.h"
22 #include "../KeyFrame.h"
23 
24 #include <memory>
25 #include <string>
26 
27 
28 namespace openshot
29 {
30 
37  class Outline : public EffectBase
38  {
39  private:
41  void init_effect_details();
42 
43  // Convert QImage to cv::Mat and vice versa
44  // Although Frame class has GetImageCV, but it does not include alpha channel
45  // so we need a separate methods which preserve alpha channel
46  // Idea from: https://stackoverflow.com/a/78480103
47  cv::Mat QImageToBGRACvMat(std::shared_ptr<QImage>& qimage);
48  std::shared_ptr<QImage> BGRACvMatToQImage(cv::Mat img);
49 
50  public:
53 
55  Outline();
56 
62 
69  std::shared_ptr<openshot::Frame> GetFrame(int64_t frame_number) override { return GetFrame(std::make_shared<openshot::Frame>(), frame_number); }
70 
80  std::shared_ptr<openshot::Frame> GetFrame(std::shared_ptr<openshot::Frame> frame, int64_t frame_number) override;
81 
82  // Get and Set JSON methods
83  std::string Json() const override;
84  void SetJson(const std::string value) override;
85  Json::Value JsonValue() const override;
86  void SetJsonValue(const Json::Value root) override;
87 
90  std::string PropertiesJSON(int64_t requested_frame) const override;
91  };
92 }
93 
94 #endif
openshot::Outline::Json
std::string Json() const override
Generate JSON string of this object.
Definition: Outline.cpp:119
openshot::EffectBase
This abstract class is the base class, used by all effects in libopenshot.
Definition: EffectBase.h:53
openshot::Outline::width
Keyframe width
Width of the outline.
Definition: Outline.h:51
openshot
This namespace is the default namespace for all code in the openshot library.
Definition: Compressor.h:28
openshot::Outline::SetJson
void SetJson(const std::string value) override
Load JSON string into this object.
Definition: Outline.cpp:139
openshot::Outline::JsonValue
Json::Value JsonValue() const override
Generate Json::Value for this object.
Definition: Outline.cpp:126
openshot::Color
This class represents a color (used on the timeline and clips)
Definition: Color.h:27
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::Outline::PropertiesJSON
std::string PropertiesJSON(int64_t requested_frame) const override
Definition: Outline.cpp:169
openshot::Outline::SetJsonValue
void SetJsonValue(const Json::Value root) override
Load Json::Value into this object.
Definition: Outline.cpp:156
openshot::Outline::color
Color color
Color of the outline.
Definition: Outline.h:52
openshot::Outline::Outline
Outline()
Blank constructor, useful when using Json to load the effect properties.
Definition: Outline.cpp:19
Color.h
Header file for Color class.
openshot::Outline::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: Outline.h:69
openshot::Outline
This class add an outline around image with transparent background and can be animated with openshot:...
Definition: Outline.h:37