template struct cv::cudev::CommonAreaInterPtrSz

#include <interpolation.hpp>

template <class SrcPtr>
struct CommonAreaInterPtrSz: public cv::cudev::CommonAreaInterPtr
{
    // fields

    int cols;
    int rows;
};

Inherited Members

public:
    // typedefs

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

    // fields

    float area_height;
    float area_width;
    SrcPtr src;

    // methods

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