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

#include <vec_traits.hpp>

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

    typedef uint elem_type;

    // enums

    enum
    {
        cn =3,
    };

    // methods

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

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

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