Home
last modified time | relevance | path

Searched refs:v_x (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/cudalegacy/src/cuda/
DNCVBroxOpticalFlow.cu223 float v_x = v[pos] + dv[pos] - v[left] - dv[left]; in diffusivity_along_x() local
231 *s = 0.5f / sqrtf(u_x*u_x + v_x*v_x + u_y*u_y + v_y*v_y + eps2); in diffusivity_along_x()
255 …float v_x = 0.25f*(v[right] + v[down_right] + dv[right] + dv[down_right] - v[left] - v[down_left] … in diffusivity_along_y() local
256 *s = 0.5f/sqrtf(u_x*u_x + v_x*v_x + u_y*u_y + v_y*v_y + eps2); in diffusivity_along_y()
/external/opencv3/modules/imgproc/src/
Dcolor.cpp3268 __m128 & v_x, __m128 & v_y, __m128 & v_z) const in process()
3270 v_x = _mm_mul_ps(v_r, v_c0); in process()
3271 v_x = _mm_add_ps(v_x, _mm_mul_ps(v_g, v_c1)); in process()
3272 v_x = _mm_add_ps(v_x, _mm_mul_ps(v_b, v_c2)); in process()
3706 void process(__m128 v_x, __m128 v_y, __m128 v_z, in process()
3709 v_b = _mm_mul_ps(v_x, v_c0); in process()
3713 v_g = _mm_mul_ps(v_x, v_c3); in process()
3717 v_r = _mm_mul_ps(v_x, v_c6); in process()