template struct cv::cudev::BrdConstant

#include <extrapolation.hpp>

template <class SrcPtr>
struct BrdConstant
{
    // typedefs

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

    // fields

    int cols;
    int rows;
    SrcPtr src;
    PtrTraits<SrcPtr>::value_type val;

    // methods

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