Searched defs:width_less_one_ (Results 1 - 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
H A Dimage.h165 [Clip(x, ZERO, width_less_one_)];
172 return RowData<T>(image_data_ + row * stride_, width_less_one_);
178 return RowData<T>(image_data_ + row * stride_, width_less_one_);
300 const int width_less_one_; member in class:tf_tracking::Image
H A Dimage-inl.h29 : width_less_one_(width - 1),
41 : width_less_one_(size.width - 1),
57 width_less_one_(width - 1),
88 (trunc_x + patchwidth) >= width_less_one_ ||
146 x, width_less_one_, y, height_less_one_); local
204 return InRange(x, ZERO, width_less_one_) &&
211 0, 0, width_less_one_ - EPSILON, height_less_one_ - EPSILON);
225 return (x >= ZERO) && (x < width_less_one_) &&
384 const int trunc_x_b = MIN(original.width_less_one_, trunc_x + 1);
415 const int orig_x = Clip(2 * x, ZERO, original.width_less_one_);
[all...]

Completed in 125 milliseconds