Searched refs:u_max (Results 1 – 6 of 6) sorted by relevance
/external/opencv3/modules/cudafeatures2d/src/ |
D | orb.cpp | 62 void loadUMax(const int* u_max, int count); 521 std::vector<int> u_max(half_patch_size + 2); in ORB_Impl() local 524 … u_max[v] = cvRound(std::sqrt(static_cast<float>(half_patch_size * half_patch_size - v * v))); in ORB_Impl() 530 while (u_max[v_0] == u_max[v_0 + 1]) in ORB_Impl() 532 u_max[v] = v_0; in ORB_Impl() 535 CV_Assert( u_max.size() < 32 ); in ORB_Impl() 536 cv::cuda::device::orb::loadUMax(&u_max[0], static_cast<int>(u_max.size())); in ORB_Impl()
|
/external/webrtc/talk/media/base/ |
D | fakevideorenderer.h | 112 uint8_t u_max, in CheckFrameColorYuv() argument 146 if (u_value < u_min || u_value > u_max) { in CheckFrameColorYuv()
|
/external/clang/include/clang/Analysis/Analyses/ |
D | ThreadSafetyUtil.h | 126 reserve(u_max(InitialCapacity, N), A); in reserveCheck() 128 reserve(u_max(Size + N, Capacity * 2), A); in reserveCheck() 213 size_t u_max(size_t i, size_t j) { return (i < j) ? j : i; } in u_max() function
|
/external/opencv3/modules/features2d/src/opencl/ |
D | orb.cl | 88 __global float* responses, const __global int* u_max, 111 int d = u_max[v];
|
/external/opencv3/modules/cudafeatures2d/src/cuda/ |
D | orb.cu | 146 void loadUMax(const int* u_max, int count) in loadUMax() argument 148 cudaSafeCall( cudaMemcpyToSymbol(c_u_max, u_max, count * sizeof(int)) ); in loadUMax()
|
/external/opencv3/modules/features2d/src/ |
D | orb.cpp | 176 std::vector<KeyPoint>& pts, const std::vector<int> & u_max, int half_k) in ICAngles() argument 197 int d = u_max[v]; in ICAngles()
|