template struct cv::cudev::CubicInterPtrSz

#include <interpolation.hpp>

template <class SrcPtr>
struct CubicInterPtrSz: public cv::cudev::CubicInterPtr
{
    // fields

    int cols;
    int rows;
};

Inherited Members

public:
    // typedefs

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

    // fields

    SrcPtr src;

    // methods

    static
    __device__ float
    bicubicCoeff(float x_);

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