template struct cv::cudev::ScharrXPtrSz

#include <deriv.hpp>

template <class SrcPtr>
struct ScharrXPtrSz: public cv::cudev::ScharrXPtr
{
    // fields

    int cols;
    int rows;

    // methods

    template <typename T>
    __host__ void
    assignTo(
        GpuMat_<T>& dst,
        Stream& stream = Stream::Null()
        ) const;
};

Inherited Members

public:
    // typedefs

    typedef int index_type;
    typedef PtrTraits<SrcPtr>::value_type value_type;

    // fields

    SrcPtr src;

    // methods

    __device__ PtrTraits<SrcPtr>::value_type
    operator()(
        int y,
        int x
        ) const;