template struct cv::cudev::CommonAreaInterPtr
#include <interpolation.hpp> template <typename SrcPtr> struct CommonAreaInterPtr { // 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; }; // direct descendants template <class SrcPtr> struct CommonAreaInterPtrSz;