OpenShot Library | libopenshot 0.5.0
Loading...
Searching...
No Matches
Outline.h
Go to the documentation of this file.
1
8
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
28namespace 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
Header file for Color class.
Header file for EffectBase class.
Header file for Frame class.
Header file for JSON class.
Header file for the Keyframe class.
This class represents a color (used on the timeline and clips).
Definition Color.h:27
This abstract class is the base class, used by all effects in libopenshot.
Definition EffectBase.h:54
A Keyframe is a collection of Point instances, which is used to vary a number or property over time.
Definition KeyFrame.h:53
std::string Json() const override
Generate JSON string of this object.
Definition Outline.cpp:119
Color color
Color of the outline.
Definition Outline.h:52
Keyframe width
Width of the outline.
Definition Outline.h:51
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
void SetJsonValue(const Json::Value root) override
Load Json::Value into this object.
Definition Outline.cpp:156
void SetJson(const std::string value) override
Load JSON string into this object.
Definition Outline.cpp:139
Outline()
Blank constructor, useful when using Json to load the effect properties.
Definition Outline.cpp:19
Json::Value JsonValue() const override
Generate Json::Value for this object.
Definition Outline.cpp:126
std::string PropertiesJSON(int64_t requested_frame) const override
Definition Outline.cpp:169
This namespace is the default namespace for all code in the openshot library.
Definition Compressor.h:29