OpenCV  4.1.0
Open Source Computer Vision
Functions
G-API Standard backends

G-API backends available in this OpenCV version. More...

Functions

cv::gapi::GBackend cv::gapi::fluid::backend ()
 Get a reference to Fluid backend.
 
cv::gapi::GBackend cv::gapi::ocl::backend ()
 Get a reference to OCL backend.
 
cv::gapi::GBackend cv::gapi::cpu::backend ()
 Get a reference to CPU (OpenCV) backend.
 

Detailed Description

G-API backends available in this OpenCV version.

G-API backends play a corner stone role in G-API execution stack. Every backend is hardware-oriented and thus can run its kernels efficiently on the target platform.

Backends are usually "back boxes" for G-API users – on the API side, all backends are represented as different objects of the same class cv::gapi::GBackend. User can manipulate with backends mainly by specifying which kernels to use or where to look up for kernels first.

See Also
gapi_hld, cv::gapi::lookup_order()

Function Documentation

cv::gapi::GBackend cv::gapi::fluid::backend ( )

Get a reference to Fluid backend.

See Also
G-API Standard backends
cv::gapi::GBackend cv::gapi::ocl::backend ( )

Get a reference to OCL backend.

At the moment, the OCL backend is built atop of OpenCV "Transparent API" (T-API), see cv::UMat for details.

See Also
G-API Standard backends
cv::gapi::GBackend cv::gapi::cpu::backend ( )

Get a reference to CPU (OpenCV) backend.

This is the default backend in G-API at the moment, providing broader functional coverage but losing some graph model advantages. Provided mostly for reference and prototyping purposes.

See Also
G-API Standard backends