From 921c4551d93164aea5d8ba387294aafe1cd38892 Mon Sep 17 00:00:00 2001 From: OrestChura Date: Wed, 31 Mar 2021 21:10:13 +0300 Subject: [PATCH] Fix conversion of the kernel's input for GArray> -> vector> --- modules/gapi/include/opencv2/gapi/cpu/gcpukernel.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/gapi/include/opencv2/gapi/cpu/gcpukernel.hpp b/modules/gapi/include/opencv2/gapi/cpu/gcpukernel.hpp index 6ddcb72..5539e24 100644 --- a/modules/gapi/include/opencv2/gapi/cpu/gcpukernel.hpp +++ b/modules/gapi/include/opencv2/gapi/cpu/gcpukernel.hpp @@ -190,6 +190,11 @@ template<> struct get_in >: public get_in>/GArray> conversion should be done more gracefully in the system +template struct get_in> >: public get_in> > +{ +}; + //FIXME(dm): GOpaque/GOpaque conversion should be done more gracefully in the system template<> struct get_in >: public get_in > { -- 2.7.4