struct InferenceEngine::gapi::kernels::cv_type_to_depth<std::int8_t>

#include <ie_preprocess_gapi_kernels.hpp>

template <>
struct cv_type_to_depth<std::int8_t>
{
    // enums

    enum
    {
        depth = CV_8S,
    };
};

struct InferenceEngine::gapi::kernels::cv_type_to_depth<std::uint8_t>

#include <ie_preprocess_gapi_kernels.hpp>

template <>
struct cv_type_to_depth<std::uint8_t>
{
    // enums

    enum
    {
        depth = CV_8U,
    };
};

struct InferenceEngine::gapi::kernels::cv_type_to_depth<std::uint16_t>

#include <ie_preprocess_gapi_kernels.hpp>

template <>
struct cv_type_to_depth<std::uint16_t>
{
    // enums

    enum
    {
        depth = CV_16U,
    };
};

struct InferenceEngine::gapi::kernels::cv_type_to_depth<std::int32_t>

#include <ie_preprocess_gapi_kernels.hpp>

template <>
struct cv_type_to_depth<std::int32_t>
{
    // enums

    enum
    {
        depth = CV_32S,
    };
};

struct InferenceEngine::gapi::kernels::cv_type_to_depth<fp_16_t>

#include <ie_preprocess_gapi_kernels.hpp>

template <>
struct cv_type_to_depth<fp_16_t>
{
    // enums

    enum
    {
        depth = CV_16F,
    };
};

struct InferenceEngine::gapi::kernels::cv_type_to_depth<float>

#include <ie_preprocess_gapi_kernels.hpp>

template <>
struct cv_type_to_depth<float>
{
    // enums

    enum
    {
        depth = CV_32F,
    };
};

struct InferenceEngine::gapi::kernels::cv_type_to_depth

struct InferenceEngine::gapi::kernels::cv_type_to_depth<std::int16_t>

#include <ie_preprocess_gapi_kernels.hpp>

template <>
struct cv_type_to_depth<std::int16_t>
{
    // enums

    enum
    {
        depth = CV_16S,
    };
};