HomeSort by relevance Sort by last modified time
    Searched refs:lut_y (Results 1 - 4 of 4) sorted by null

  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities.cpp 103 const float * const * lut_x, const float * const * lut_y)
112 //yd = static_cast<unsigned int>(lut_y[j][i]);
114 yd = (unsigned int)(lut_y[j][i]);
124 const float * const * lut_x,const float * const* lut_y)
133 yd = static_cast<double>(lut_y[j][i]);
144 const float * const * lut_x,const float * const * lut_y, int type)
149 db_WarpImageLutFast_u(src,dst,w,h,lut_x,lut_y);
152 db_WarpImageLutBilinear_u(src,dst,w,h,lut_x,lut_y);
db_utilities.h 538 * and y_s is determined from lut_y:
541 y_s = lut_y[y_d][x_d];
549 * \param lut_y LUT for y
553 const float * const * lut_x, const float * const * lut_y, int type=DB_WARP_BILINEAR);
  /development/perftests/panorama/feature_stab/src/dbreg/
dbreg.h 427 \param lut_y pre-allocated float image
432 inline void db_GenerateHomographyLut(float ** lut_x,float ** lut_y,int w,int h,const double H[9])
434 assert(lut_x && lut_y);
459 lut_y[j][i] = float(xb[1]);
467 * and y_s is determined from lut_y:
470 y_s = lut_y[y_d][x_d];
478 * \param lut_y LUT for y
481 const float * const * lut_x, const float * const * lut_y)
490 yd = static_cast<unsigned int>(lut_y[j][i]);
527 const float * const * lut_x, const float * const * lut_y)
    [all...]
  /development/perftests/panorama/feature_stab/src/dbregtest/
dbregtest.cpp 141 float ** lut_x = NULL, **lut_y = NULL; local
178 lut_y = db_AllocImage_f(w,h);
226 db_GenerateHomographyLut(lut_x,lut_y,w,h,H);
236 db_WarpImageLutBilinear_rgb(color_ref.GetRowPointers(),warped.GetRowPointers(),w,h,lut_x,lut_y);
238 db_WarpImageLut_u(ref.GetRowPointers(),warped.GetRowPointers(),w,h,lut_x,lut_y,DB_WARP_FAST);
298 db_FreeImage_f(lut_y,h);

Completed in 123 milliseconds