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

  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
image_utils.h 136 inline void CalculateG(const int window_radius, const float center_x,
143 SCHECK(window_radius <= kMaxWindowRadius,
144 "Window %d > %d!", window_radius, kMaxWindowRadius);
154 const int src_left_fixed = RealToFixed1616(center_x - window_radius);
155 const int src_top_fixed = RealToFixed1616(center_y - window_radius);
160 const int window_size = 2 * window_radius + 1;
image-inl.h 447 static const int window_radius = 2; local
448 static const int window_size = window_radius*2 + 1;
462 const int start_x = Clip((x << 1) - window_radius, ZERO, max_x);
467 Clip((y << 1) - window_radius + window_y, ZERO, max_y);

Completed in 60 milliseconds