Home
last modified time | relevance | path

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

/external/libvpx/libvpx/tools/3D-Reconstruction/MotionEST/
DSearchSmooth.py38 I_col = 0
57 I_col += np.sum(np.abs(nb - center)) - np.sum(
60 I_col //= (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]]))
144 I_col = 0
163 I_col += np.sum(np.abs(nb - center)) - np.sum(
166 I_col //= (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
515 I_col += nb_dist - search_dist; in vp9_get_local_structure()
521 I_col += nb_dist - search_dist; in vp9_get_local_structure()
524 I_col /= 2; in vp9_get_local_structure()
526 I_col /= (bw * bh); 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()
530 M[row * cols + col][3] = I_col * I_col; in vp9_get_local_structure()