Home
last modified time | relevance | path

Searched defs:BrdRowReflect (Results 1 – 1 of 1) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/cuda/
Dborder_interpolate.hpp405 template <typename D> struct BrdRowReflect struct
407 typedef D result_type;
409 … explicit __host__ __device__ __forceinline__ BrdRowReflect(int width) : last_col(width - 1) {} in BrdRowReflect() argument
410 … <typename U> __host__ __device__ __forceinline__ BrdRowReflect(int width, U) : last_col(width - 1… in BrdRowReflect() argument
412 __device__ __forceinline__ int idx_col_low(int x) const in idx_col_low()
417 __device__ __forceinline__ int idx_col_high(int x) const in idx_col_high()
422 __device__ __forceinline__ int idx_col(int x) const in idx_col()
427 template <typename T> __device__ __forceinline__ D at_low(int x, const T* data) const in at_low()
432 template <typename T> __device__ __forceinline__ D at_high(int x, const T* data) const in at_high()
437 template <typename T> __device__ __forceinline__ D at(int x, const T* data) const in at()
[all …]