Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dimage-inl.h29 : width_less_one_(width - 1), in Image()
41 : width_less_one_(size.width - 1), in Image()
57 width_less_one_(width - 1), in Image()
88 (trunc_x + patchwidth) >= width_less_one_ || in ExtractPatchAtSubpixelFixed1616()
146 x, width_less_one_, y, height_less_one_); in GetPixelInterp()
204 return InRange(x, ZERO, width_less_one_) && in ValidPixel()
211 0, 0, width_less_one_ - EPSILON, height_less_one_ - EPSILON); in GetContainingBox()
225 return (x >= ZERO) && (x < width_less_one_) && in ValidInterpPixel()
384 const int trunc_x_b = MIN(original.width_less_one_, trunc_x + 1); in DownsampleInterpolateLinear()
415 const int orig_x = Clip(2 * x, ZERO, original.width_less_one_); in DownsampleSmoothed3x3()
[all …]
Dimage.h165 [Clip(x, ZERO, width_less_one_)]; in GetPixelClipped()
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_; variable
Doptical_flow.cc69 const int fixed_x_max = RealToFixed1616(img_I.width_less_one_) - 1; in FindFlowAtPoint_LK()
72 const float real_x_max = I_x.width_less_one_ - EPSILON; in FindFlowAtPoint_LK()
266 (left_trunc + patch_size) < img_J.width_less_one_ && in FindFlowAtPoint_ESM()
366 (left_trunc + patch_size) >= J_x.width_less_one_ || in FindFlowAtPoint_ESM()
Dimage_utils.h73 const int max_x = MIN(x + d_x, img->width_less_one_); in MarkImage()