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

#include <vec_traits.hpp>

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

    typedef uchar elem_type;

    // enums

    enum
    {
        cn =4,
    };

    // methods

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

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

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