mirror of
https://github.com/opencv/opencv.git
synced 2025-06-12 20:34:07 +08:00

G-API: Introduce runtime in-graph metadata * G-API: In-graph metadata -- initial implementation * G-API: Finish the in-graph metadata implementation for Streaming * G-API: Fix standalone build & warnings for in-graph metadata * G-API: In-graph meta -- fixed review comments * G-API: Fix issues with desync causing failing tests
17 lines
332 B
C++
17 lines
332 B
C++
#ifndef OPENCV_GAPI_SRC_COMMON_META_BACKEND_HPP
|
|
#define OPENCV_GAPI_SRC_COMMON_META_BACKEND_HPP
|
|
|
|
#include <opencv2/gapi/gkernel.hpp>
|
|
|
|
namespace cv {
|
|
namespace gimpl {
|
|
namespace meta {
|
|
|
|
cv::gapi::GKernelPackage kernels();
|
|
|
|
} // namespace meta
|
|
} // namespace gimpl
|
|
} // namespace cv
|
|
|
|
#endif // OPENCV_GAPI_SRC_COMMON_META_BACKEND_HPP
|