Home
last modified time | relevance | path

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

/external/libvpx/tools/3D-Reconstruction/MotionEST/
DSearchSmooth.py45 I_row = 0
57 I_row += np.sum(np.abs(nb - center)) - np.sum(
60 I_row //= (count * blk_sz * blk_sz)
70 np.array([[I_row * I_row, I_row * I_col],
71 [I_col * I_row, I_col * I_col]]))
151 I_row = 0
163 I_row += np.sum(np.abs(nb - center)) - np.sum(
166 I_row //= (count * blk_sz * blk_sz)
176 np.array([[I_row * I_row, I_row * I_col],
177 [I_col * I_row, I_col * I_col]]))
/external/libvpx/vp9/encoder/
Dvp9_non_greedy_mv.c484 int I_row = 0, I_col = 0; in vp9_get_local_structure() local
502 I_row += nb_dist - search_dist; in vp9_get_local_structure()
508 I_row += nb_dist - search_dist; in vp9_get_local_structure()
511 I_row /= 2; in vp9_get_local_structure()
513 I_row /= (bw * bh); in vp9_get_local_structure()
530 M[row * cols + col][0] = I_row * I_row; in vp9_get_local_structure()
531 M[row * cols + col][1] = I_row * I_col; in vp9_get_local_structure()
532 M[row * cols + col][2] = I_col * I_row; in vp9_get_local_structure()