Home
last modified time | relevance | path

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

/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
DBlend.cpp989 double xfrac = xx - x1; in ProcessPyramidForThisFrame() local
992 wt1 * ciCalc(sptr, x1, y1, xfrac, yfrac)); in ProcessPyramidForThisFrame()
996 wt1 * ciCalc(suptr, x1, y1, xfrac, yfrac)); in ProcessPyramidForThisFrame()
998 wt1 * ciCalc(svptr, x1, y1, xfrac, yfrac)); in ProcessPyramidForThisFrame()
1006 double xfrac = xx - x1; in ProcessPyramidForThisFrame() local
1009 (sptr->ptr[y1][x2] - sptr->ptr[y1][x1]) * xfrac; in ProcessPyramidForThisFrame()
1011 (sptr->ptr[y2][x2] - sptr->ptr[y2][x1]) * xfrac; in ProcessPyramidForThisFrame()
1017 (suptr->ptr[y1][x2] - suptr->ptr[y1][x1]) * xfrac; in ProcessPyramidForThisFrame()
1019 (suptr->ptr[y2][x2] - suptr->ptr[y2][x1]) * xfrac; in ProcessPyramidForThisFrame()
1024 (svptr->ptr[y1][x2] - svptr->ptr[y1][x1]) * xfrac; in ProcessPyramidForThisFrame()
[all …]
DInterp.h46 inline double ciCalc(PyramidShort *img, int xi, int yi, double xfrac, double yfrac) in ciCalc() argument
52 int off = (int)(xfrac * CTAPS); in ciCalc()