Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.1 KiB
50 lines
1.1 KiB
// 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) 2018 Intel Corporation |
|
|
|
|
|
#include <cassert> |
|
|
|
#include <opencv2/gapi/ocl/goclkernel.hpp> |
|
|
|
const cv::UMat& cv::GOCLContext::inMat(int input) |
|
{ |
|
return (inArg<cv::UMat>(input)); |
|
} |
|
|
|
cv::UMat& cv::GOCLContext::outMatR(int output) |
|
{ |
|
return (*(util::get<cv::UMat*>(m_results.at(output)))); |
|
} |
|
|
|
const cv::gapi::own::Scalar& cv::GOCLContext::inVal(int input) |
|
{ |
|
return inArg<cv::gapi::own::Scalar>(input); |
|
} |
|
|
|
cv::gapi::own::Scalar& cv::GOCLContext::outValR(int output) |
|
{ |
|
return *util::get<cv::gapi::own::Scalar*>(m_results.at(output)); |
|
} |
|
|
|
cv::detail::VectorRef& cv::GOCLContext::outVecRef(int output) |
|
{ |
|
return util::get<cv::detail::VectorRef>(m_results.at(output)); |
|
} |
|
|
|
cv::GOCLKernel::GOCLKernel() |
|
{ |
|
} |
|
|
|
cv::GOCLKernel::GOCLKernel(const GOCLKernel::F &f) |
|
: m_f(f) |
|
{ |
|
} |
|
|
|
void cv::GOCLKernel::apply(GOCLContext &ctx) |
|
{ |
|
CV_Assert(m_f); |
|
m_f(ctx); |
|
}
|
|
|