Home
last modified time | relevance | path

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

/external/opencv3/modules/core/include/opencv2/core/cuda/
Dborder_interpolate.hpp137 template <typename D> struct BrdRowReplicate struct
139 typedef D result_type;
141 … explicit __host__ __device__ __forceinline__ BrdRowReplicate(int width) : last_col(width - 1) {} in BrdRowReplicate() argument
142 …<typename U> __host__ __device__ __forceinline__ BrdRowReplicate(int width, U) : last_col(width - … in BrdRowReplicate() argument
144 __device__ __forceinline__ int idx_col_low(int x) const in idx_col_low()
149 __device__ __forceinline__ int idx_col_high(int x) const in idx_col_high()
154 __device__ __forceinline__ int idx_col(int x) const in idx_col()
159 template <typename T> __device__ __forceinline__ D at_low(int x, const T* data) const in at_low()
164 template <typename T> __device__ __forceinline__ D at_high(int x, const T* data) const in at_high()
169 template <typename T> __device__ __forceinline__ D at(int x, const T* data) const in at()
[all …]