Home
last modified time | relevance | path

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

/external/libvpx/libvpx/tools/3D-Reconstruction/MotionEST/
DSearchSmooth.py37 I_row = 0
49 I_row += np.sum(np.abs(nb - center)) - np.sum(
52 I_row //= (count * blk_sz * blk_sz)
62 np.array([[I_row * I_row, I_row * I_col],
63 [I_col * I_row, I_col * I_col]]))
143 I_row = 0
155 I_row += np.sum(np.abs(nb - center)) - np.sum(
158 I_row //= (count * blk_sz * blk_sz)
168 np.array([[I_row * I_row, I_row * I_col],
169 [I_col * I_row, I_col * I_col]]))
/external/libvpx/libvpx/vp9/encoder/
Dvp9_non_greedy_mv.c481 int I_row = 0, I_col = 0; in vp9_get_local_structure() local
499 I_row += nb_dist - search_dist; in vp9_get_local_structure()
505 I_row += nb_dist - search_dist; in vp9_get_local_structure()
508 I_row /= 2; in vp9_get_local_structure()
510 I_row /= (bw * bh); in vp9_get_local_structure()
527 M[row * cols + col][0] = I_row * I_row; in vp9_get_local_structure()
528 M[row * cols + col][1] = I_row * I_col; in vp9_get_local_structure()
529 M[row * cols + col][2] = I_col * I_row; in vp9_get_local_structure()