OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lut_x
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities.cpp
103
const float * const *
lut_x
, const float * const * lut_y)
111
//xd = static_cast<unsigned int>(
lut_x
[j][i]);
113
xd = (unsigned int)(
lut_x
[j][i]);
124
const float * const *
lut_x
,const float * const* lut_y)
132
xd = static_cast<double>(
lut_x
[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
537
* The source value x_s is determined from destination (x_d,y_d) through
lut_x
540
x_s =
lut_x
[y_d][x_d];
548
* \param
lut_x
LUT for x
553
const float * const *
lut_x
, const float * const * lut_y, int type=DB_WARP_BILINEAR);
/packages/apps/Camera/jni/feature_stab/src/dbreg/
dbreg.h
426
\param
lut_x
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);
458
lut_x
[j][i] = float(xb[0]);
466
* The source value x_s is determined from destination (x_d,y_d) through
lut_x
469
x_s =
lut_x
[y_d][x_d];
477
* \param
lut_x
LUT for x
481
const float * const *
lut_x
, const float * const * lut_y)
489
xd = static_cast<unsigned int>(
lut_x
[j][i]);
527
const float * const *
lut_x
, const float * const * lut_y
[
all
...]
/packages/apps/Camera/jni/feature_stab/src/dbregtest/
dbregtest.cpp
141
float **
lut_x
= NULL, **lut_y = NULL;
local
177
lut_x
= 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);
297
db_FreeImage_f(
lut_x
,h);
Completed in 3941 milliseconds