hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// This file is part of OpenCV project.
// It is subject to the license terms in the LICENSE file found in the top-level directory
// of this distribution and at http://opencv.org/license.html.
//
// Copyright (C) 2019 Intel Corporation
 
#ifndef OPENCV_GAPI_STREAMING_SOURCE_HPP
#define OPENCV_GAPI_STREAMING_SOURCE_HPP
 
#include <memory>                      // shared_ptr
#include <type_traits>                 // is_base_of
 
#include <opencv2/gapi/gmetaarg.hpp>   // GMetaArg
 
 
namespace cv {
namespace gapi {
namespace wip {
    struct Data; // "forward-declaration" of GRunArg
 
/**
 * @brief Abstract streaming pipeline source.
 *
 * Implement this interface if you want customize the way how data is
 * streaming into GStreamingCompiled.
 *
 * Objects implementing this interface can be passed to
 * GStreamingCompiled using setSource() with cv::gin(). Regular
 * compiled graphs (GCompiled) don't support input objects of this
 * type.
 *
 * Default cv::VideoCapture-based implementation is available, see
 * cv::gapi::wip::GCaptureSource.
 *
 * @note stream sources are passed to G-API via shared pointers, so
 *  please use ptr() when passing a IStreamSource implementation to
 *  cv::gin().
 */
class IStreamSource: public std::enable_shared_from_this<IStreamSource>
{
public:
    using Ptr = std::shared_ptr<IStreamSource>;
    Ptr ptr() { return shared_from_this(); }
    virtual bool pull(Data &data) = 0;
    virtual GMetaArg descr_of() const = 0;
    virtual ~IStreamSource() = default;
};
 
template<class T, class... Args>
IStreamSource::Ptr inline make_src(Args&&... args)
{
    static_assert(std::is_base_of<IStreamSource, T>::value,
                  "T must implement the cv::gapi::IStreamSource interface!");
    auto src_ptr = std::make_shared<T>(std::forward<Args>(args)...);
    return src_ptr->ptr();
}
 
} // namespace wip
} // namespace gapi
} // namespace cv
 
#endif // OPENCV_GAPI_STREAMING_SOURCE_HPP