mirror of
https://github.com/opencv/opencv.git
synced 2025-06-14 21:50:50 +08:00
Merge pull request #19815 from OrestChura:oc/fix_garray_garray_input
This commit is contained in:
commit
7baae20c20
@ -190,6 +190,11 @@ template<> struct get_in<cv::GArray<cv::GScalar> >: public get_in<cv::GArray<cv:
|
|||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// FIXME(dm): GArray<vector<U>>/GArray<GArray<U>> conversion should be done more gracefully in the system
|
||||||
|
template<typename U> struct get_in<cv::GArray<cv::GArray<U>> >: public get_in<cv::GArray<std::vector<U>> >
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
//FIXME(dm): GOpaque<Mat>/GOpaque<GMat> conversion should be done more gracefully in the system
|
//FIXME(dm): GOpaque<Mat>/GOpaque<GMat> conversion should be done more gracefully in the system
|
||||||
template<> struct get_in<cv::GOpaque<cv::GMat> >: public get_in<cv::GOpaque<cv::Mat> >
|
template<> struct get_in<cv::GOpaque<cv::GMat> >: public get_in<cv::GOpaque<cv::Mat> >
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user