Home
last modified time | relevance | path

Searched refs:intersection_xmin (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/lite/kernels/
Ddetection_postprocess.cc357 const float intersection_xmin = std::max<float>(box_i.xmin, box_j.xmin); in ComputeIntersectionOverUnion() local
362 std::max<float>(intersection_xmax - intersection_xmin, 0.0); in ComputeIntersectionOverUnion()
/external/tensorflow/tensorflow/core/kernels/
Dnon_max_suppression_op.cc121 const T intersection_xmin = std::max<T>(xmin_i, xmin_j); in IOUGreaterThanThreshold() local
126 std::max<T>(intersection_xmax - intersection_xmin, static_cast<T>(0.0)); in IOUGreaterThanThreshold()
Dnon_max_suppression_op_test.cc680 const float intersection_xmin = std::max<float>(xmin_i, xmin_j); in AddIoUInput() local
685 std::max<float>(intersection_xmax - intersection_xmin, 0.0); in AddIoUInput()