Home
last modified time | relevance | path

Searched refs:RealToFixed1616 (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Doptical_flow.cc69 const int fixed_x_max = RealToFixed1616(img_I.width_less_one_) - 1; in FindFlowAtPoint_LK()
70 const int fixed_y_max = RealToFixed1616(img_I.height_less_one_) - 1; in FindFlowAtPoint_LK()
84 const int src_left_fixed = RealToFixed1616(src_left_real); in FindFlowAtPoint_LK()
85 const int src_top_fixed = RealToFixed1616(src_top_real); in FindFlowAtPoint_LK()
139 const int left_fixed = RealToFixed1616(left_real); in FindFlowAtPoint_LK()
140 const int top_fixed = RealToFixed1616(top_real); in FindFlowAtPoint_LK()
235 const int src_left_fixed = RealToFixed1616(p_x - wsize_float); in FindFlowAtPoint_ESM()
236 const int src_top_fixed = RealToFixed1616(p_y - wsize_float); in FindFlowAtPoint_ESM()
256 int left_fixed = RealToFixed1616(p_x + g_x - wsize_float); in FindFlowAtPoint_ESM()
257 int top_fixed = RealToFixed1616(p_y + g_y - wsize_float); in FindFlowAtPoint_ESM()
[all …]
Dimage_utils.h153 const int src_left_fixed = RealToFixed1616(center_x - window_radius); in CalculateG()
154 const int src_top_fixed = RealToFixed1616(center_y - window_radius); in CalculateG()
Dimage-inl.h327 const int offset_x_fp = RealToFixed1616(offset_x); in DownsampleInterpolateLinear()
331 const int offset_y_fp = RealToFixed1616(offset_y); in DownsampleInterpolateLinear()
337 const int factor_x_fp = RealToFixed1616(factor_x) >> 8; in DownsampleInterpolateLinear()
338 const int factor_y_fp = RealToFixed1616(factor_y) >> 8; in DownsampleInterpolateLinear()
Dutils.h196 static inline int RealToFixed1616(const float real_number) { in RealToFixed1616() function