Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/kernels/
Ddetection_postprocess.cc359 const float intersection_xmax = std::min<float>(box_i.xmax, box_j.xmax); in ComputeIntersectionOverUnion() local
362 std::max<float>(intersection_xmax - intersection_xmin, 0.0); in ComputeIntersectionOverUnion()
/external/tensorflow/tensorflow/core/kernels/
Dnon_max_suppression_op.cc123 const T intersection_xmax = std::min<T>(xmax_i, xmax_j); in IOUGreaterThanThreshold() local
126 std::max<T>(intersection_xmax - intersection_xmin, static_cast<T>(0.0)); in IOUGreaterThanThreshold()
Dnon_max_suppression_op_test.cc682 const float intersection_xmax = std::min<float>(xmax_i, xmax_j); in AddIoUInput() local
685 std::max<float>(intersection_xmax - intersection_xmin, 0.0); in AddIoUInput()