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

#include <vec_traits.hpp>

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

    typedef uchar elem_type;

    // enums

    enum
    {
        cn =3,
    };

    // methods

    static
    __host__ __device__ static __forceinline__ uchar3
    all(uchar v);

    static
    __host__ __device__ static __forceinline__ uchar3
    make(const uchar* v);

    static
    __host__ __device__ static __forceinline__ uchar3
    make(
        uchar x,
        uchar y,
        uchar z
        );
};