gobjref.hpp 1.57 KB
Newer Older
1 2 3 4
// 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.
//
5
// Copyright (C) 2018 Intel Corporation
6 7


8 9
#ifndef OPENCV_GAPI_GOBJREF_HPP
#define OPENCV_GAPI_GOBJREF_HPP
10 11 12 13 14 15 16 17 18

#include "opencv2/gapi/util/variant.hpp"
#include "opencv2/gapi/garg.hpp"

namespace cv
{

namespace gimpl
{
19 20 21 22 23 24 25 26 27 28 29 30 31 32
    // Union type for various user-defined type constructors (GArray<T>, etc)
    // FIXME: Replace construct-only API with a more generic one
    //    (probably with bits of introspection)
    // Not required for non-user-defined types (GMat, GScalar, etc)
    using HostCtor = util::variant
    < util::monostate
    , detail::ConstructVec
    >;

    using ConstVal = util::variant
    < util::monostate
    , cv::gapi::own::Scalar
    >;

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
    struct RcDesc
    {
        int      id;      // id is unique but local to shape
        GShape   shape;   // pair <id,shape> IS the unique ID
        HostCtor ctor;    // FIXME: is it really used here? Or in <Data>?

        bool operator==(const RcDesc &rhs) const
        {
            // FIXME: ctor is not checked (should be?)
            return id == rhs.id && shape == rhs.shape;
        }

        bool operator< (const RcDesc &rhs) const
        {
            return (id == rhs.id) ? shape < rhs.shape : id < rhs.id;
        }
    };
} // gimpl

namespace detail
{
    template<> struct GTypeTraits<cv::gimpl::RcDesc>
    {
        static constexpr const ArgKind kind = ArgKind::GOBJREF;
    };
}

} // cv

62
#endif // OPENCV_GAPI_GOBJREF_HPP