OpenCV  4.5.0
Open Source Computer Vision
Public Types | Public Member Functions | List of all members
cv::gapi::wip::IStreamSource Class Referenceabstract

Abstract streaming pipeline source. More...

#include <opencv2/gapi/streaming/source.hpp>

Inheritance diagram for cv::gapi::wip::IStreamSource:
cv::gapi::wip::GCaptureSource

Public Types

using Ptr = std::shared_ptr< IStreamSource >
 

Public Member Functions

virtual ~IStreamSource ()=default
 
virtual GMetaArg descr_of () const =0
 
Ptr ptr ()
 
virtual bool pull (Data &data)=0
 

Detailed Description

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().

Member Typedef Documentation

◆ Ptr

Constructor & Destructor Documentation

◆ ~IStreamSource()

virtual cv::gapi::wip::IStreamSource::~IStreamSource ( )
virtualdefault

Member Function Documentation

◆ descr_of()

virtual GMetaArg cv::gapi::wip::IStreamSource::descr_of ( ) const
pure virtual

◆ ptr()

Ptr cv::gapi::wip::IStreamSource::ptr ( )
inline

◆ pull()

virtual bool cv::gapi::wip::IStreamSource::pull ( Data data)
pure virtual

The documentation for this class was generated from the following file: