template struct cv::cudev::VecTraits<uint2>

#include <vec_traits.hpp>

template <>
struct VecTraits<uint2>
{
    // typedefs

    typedef uint elem_type;

    // enums

    enum
    {
        cn =2,
    };

    // methods

    static
    __host__ __device__ static __forceinline__ uint2
    all(uint v);

    static
    __host__ __device__ static __forceinline__ uint2
    make(const uint* v);

    static
    __host__ __device__ static __forceinline__ uint2
    make(
        uint x,
        uint y
        );
};