mirror of
https://github.com/opencv/opencv.git
synced 2025-06-16 14:50:52 +08:00
Merge pull request #13088 from alalek:gapi_fix_arm_build
This commit is contained in:
commit
6fb780eae6
@ -125,7 +125,7 @@ struct tracked_cv_umat{
|
|||||||
struct scalar_wrapper_gpu
|
struct scalar_wrapper_gpu
|
||||||
{
|
{
|
||||||
//FIXME reuse CPU (OpenCV) plugin code
|
//FIXME reuse CPU (OpenCV) plugin code
|
||||||
scalar_wrapper_gpu(cv::gapi::own::Scalar& s) : m_s{cv::gapi::own::to_ocv(s)}, m_org_s{s} {};
|
scalar_wrapper_gpu(cv::gapi::own::Scalar& s) : m_s{cv::gapi::own::to_ocv(s)}, m_org_s(s) {};
|
||||||
operator cv::Scalar& () { return m_s; }
|
operator cv::Scalar& () { return m_s; }
|
||||||
void writeBack() const { m_org_s = to_own(m_s); }
|
void writeBack() const { m_org_s = to_own(m_s); }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user