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

  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
image.h 164 return (*this)[Clip(y, ZERO, height_less_one_)]
170 SCHECK(InRange(row, 0, height_less_one_),
171 "Row out of range: %d (%d max)", row, height_less_one_); local
176 SCHECK(InRange(row, 0, height_less_one_),
177 "Row out of range: %d (%d max)", row, height_less_one_); local
301 const int height_less_one_; member in class:tf_tracking::Image
image-inl.h 30 height_less_one_(height - 1),
42 height_less_one_(size.height - 1),
58 height_less_one_(height - 1),
89 (trunc_y + patchheight) >= height_less_one_) {
146 x, width_less_one_, y, height_less_one_); local
205 InRange(y, ZERO, height_less_one_);
211 0, 0, width_less_one_ - EPSILON, height_less_one_ - EPSILON);
226 (y >= ZERO) && (y < height_less_one_);
361 const int trunc_y_b = MIN(original.height_less_one_, trunc_y + 1);
410 const int orig_y = Clip(2 * y, ZERO, original.height_less_one_);
    [all...]

Completed in 128 milliseconds