OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:outmot
(Results
1 - 3
of
3
) sorted by null
/packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
dbstabsmooth.h
64
* \param
outmot
smoothed output motion parameters
66
bool smoothMotion(VP_MOTION *inmot, VP_MOTION *
outmot
);
73
* \param
outmot
smoothed output motion parameters
75
bool smoothMotionAdaptive(/*VP_BIMG *bimg,*/int hsize, int vsize, VP_MOTION *inmot, VP_MOTION *
outmot
);
76
bool smoothPanMotion_1(VP_MOTION *inmot, VP_MOTION *
outmot
);
77
bool smoothPanMotion_2(VP_MOTION *inmot, VP_MOTION *
outmot
);
133
bool smoothMotion(VP_MOTION *inmot, VP_MOTION *
outmot
, double smooth_factor);
134
bool smoothMotion1(VP_MOTION *inmot, VP_MOTION *
outmot
, VP_MOTION *motLF, VP_MOTION *imotLF, double smooth_factor);
dbstabsmooth.cpp
61
bool db_StabilizationSmoother::smoothMotion(VP_MOTION *inmot, VP_MOTION *
outmot
)
98
if(!vp_cascade_motion(&f_imotLF, inmot,
outmot
))
102
vp_copy_motion_no_id(inmot,
outmot
);
108
bool db_StabilizationSmoother::smoothMotionAdaptive(/*VP_BIMG *bimg,*/int hsize, int vsize, VP_MOTION *inmot, VP_MOTION *
outmot
)
182
vp_copy_motion_no_id(&tmpMotion/*in*/,
outmot
/*out*/);
186
vp_copy_motion_no_id(inmot,
outmot
);
192
bool db_StabilizationSmoother::smoothMotion(VP_MOTION *inmot, VP_MOTION *
outmot
, double smooth_factor)
227
if(!vp_cascade_motion(&f_imotLF, inmot,
outmot
))
231
vp_copy_motion_no_id(inmot,
outmot
);
239
db_StabilizationSmoother::smoothMotion1(VP_MOTION *inmot, VP_MOTION *
outmot
, VP_MOTION *motLF, VP_MOTION *imotLF, double factor
[
all
...]
dbreg.cpp
686
VP_MOTION inmot,
outmot
;
local
724
m_stab_smoother.smoothMotionAdaptive(w,h,&inmot,&
outmot
);
726
m_stab_smoother.smoothMotion(&inmot,&
outmot
);
729
H[0] = MXX(
outmot
);
730
H[1] = MXY(
outmot
);
731
H[2] = MXZ(
outmot
);
733
H[3] = MYX(
outmot
);
734
H[4] = MYY(
outmot
);
735
H[5] = MYZ(
outmot
);
737
H[6] = MZX(
outmot
);
[
all
...]
Completed in 89 milliseconds