Home
last modified time | relevance | path

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

/packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
Ddbstabsmooth.cpp36 f_smoothFactor = 1.0f; in Init()
70 …MXX(f_motLF) = (VP_PAR) (f_smoothFactor*(double) MXX(f_motLF) + (1.0-f_smoothFactor)* (double) MXX… in smoothMotion()
71 …MXY(f_motLF) = (VP_PAR) (f_smoothFactor*(double) MXY(f_motLF) + (1.0-f_smoothFactor)* (double) MXY… in smoothMotion()
72 …MXZ(f_motLF) = (VP_PAR) (f_smoothFactor*(double) MXZ(f_motLF) + (1.0-f_smoothFactor)* (double) MXZ… in smoothMotion()
73 …MXW(f_motLF) = (VP_PAR) (f_smoothFactor*(double) MXW(f_motLF) + (1.0-f_smoothFactor)* (double) MXW… in smoothMotion()
75 …MYX(f_motLF) = (VP_PAR) (f_smoothFactor*(double) MYX(f_motLF) + (1.0-f_smoothFactor)* (double) MYX… in smoothMotion()
76 …MYY(f_motLF) = (VP_PAR) (f_smoothFactor*(double) MYY(f_motLF) + (1.0-f_smoothFactor)* (double) MYY… in smoothMotion()
77 …MYZ(f_motLF) = (VP_PAR) (f_smoothFactor*(double) MYZ(f_motLF) + (1.0-f_smoothFactor)* (double) MYZ… in smoothMotion()
78 …MYW(f_motLF) = (VP_PAR) (f_smoothFactor*(double) MYW(f_motLF) + (1.0-f_smoothFactor)* (double) MYW… in smoothMotion()
80 …MZX(f_motLF) = (VP_PAR) (f_smoothFactor*(double) MZX(f_motLF) + (1.0-f_smoothFactor)* (double) MZX… in smoothMotion()
[all …]
Ddbstabsmooth.h83 inline void setSmoothingFactor(float factor) { f_smoothFactor = factor; } in setSmoothingFactor()
103 inline float getSmoothingFactor(void) { return f_smoothFactor; } in getSmoothingFactor()
144 float f_smoothFactor; variable