![]() |
OpenCV
4.2.0
Open Source Computer Vision
|
#include <functional>#include <iostream>#include <string>#include <type_traits>#include <unordered_map>#include <utility>#include <opencv2/gapi/gcommon.hpp>#include <opencv2/gapi/util/util.hpp>#include <opencv2/gapi/gcall.hpp>#include <opencv2/gapi/garg.hpp>#include <opencv2/gapi/gmetaarg.hpp>#include <opencv2/gapi/gtype_traits.hpp>#include <opencv2/gapi/util/compiler_hints.hpp>#include <opencv2/gapi/gtransform.hpp>Namespaces | |
| cv | |
| "black box" representation of the file storage associated with a file on disk. | |
| cv::detail | |
| cv::gapi | |
Macros | |
| #define | G_API_OP G_TYPED_KERNEL |
| #define | G_API_OP_M G_TYPED_KERNEL_M |
| #define | G_TYPED_KERNEL(Class, API, Id) |
| #define | G_TYPED_KERNEL_M(Class, API, Id) |
Typedefs | |
| using | cv::GShapes = std::vector< GShape > |
| template<typename T > | |
| using | cv::detail::is_nongapi_type = std::is_same< T, typename MetaType< T >::type > |
Functions | |
| GKernelPackage | cv::gapi::combine (const GKernelPackage &lhs, const GKernelPackage &rhs) |
| template<typename... Ps> | |
| GKernelPackage | cv::gapi::combine (const GKernelPackage &a, const GKernelPackage &b, Ps &&... rest) |
| Combines multiple G-API kernel packages into one. More... | |
| template<typename T > | |
| std::enable_if<!is_nongapi_type< T >::value, typename MetaType< T >::type >::type | cv::detail::get_in_meta (const GMetaArgs &in_meta, const GArgs &, int idx) |
| template<typename T > | |
| std::enable_if< is_nongapi_type< T >::value, T >::type | cv::detail::get_in_meta (const GMetaArgs &, const GArgs &in_args, int idx) |
| template<typename... KK> | |
| GKernelPackage | cv::gapi::kernels () |
| Create a kernel package object containing kernels and transformations specified in variadic template argument. More... | |
| bool | cv::gapi::operator!= (const GBackend &lhs, const GBackend &rhs) |
| #define G_API_OP G_TYPED_KERNEL |
| #define G_API_OP_M G_TYPED_KERNEL_M |
| #define G_TYPED_KERNEL | ( | Class, | |
| API, | |||
| Id | |||
| ) |
Declares a new G-API Operation. See Kernel API for more details.
| Class | type name for this operation. |
| API | an std::function<>-like signature for the operation; return type is a single value. |
| Id | string identifier for the operation. Must be unique. |
| #define G_TYPED_KERNEL_M | ( | Class, | |
| API, | |||
| Id | |||
| ) |
Declares a new G-API Operation. See Kernel API for more details.
| Class | type name for this operation. |
| API | an std::function<>-like signature for the operation; return type is a tuple of multiple values. |
| Id | string identifier for the operation. Must be unique. |
1.8.13