Searched refs:CV_REMAP_MASK (Results 1 - 1 of 1) sorted by relevance

/external/opencv/cv/src/
H A Dcvimgwarp.cpp1782 #define CV_REMAP_MASK ((1 << CV_REMAP_SHIFT) - 1) macro
1814 for( y = 0; y <= CV_REMAP_MASK; y++ )
1815 for( x = 0; x <= CV_REMAP_MASK; x++ )
1818 atab[k][0] = (ushort)((CV_REMAP_MASK+1 - y)*(CV_REMAP_MASK+1 - x));
1819 atab[k][1] = (ushort)((CV_REMAP_MASK+1 - y)*x);
1820 atab[k][2] = (ushort)(y*(CV_REMAP_MASK+1 - x));
2130 alpha[x] = (short)((xi & CV_REMAP_MASK) + ((yi & CV_REMAP_MASK)<<CV_REMAP_SHIFT));

Completed in 48 milliseconds