Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Dnon_max_suppression.h53 const float intersection_xmax = std::min<float>(box_i_x_max, box_j_x_max); in ComputeIntersectionOverUnion() local
58 std::max<float>(intersection_xmax - intersection_xmin, 0.0); in ComputeIntersectionOverUnion()
/external/tensorflow/tensorflow/lite/micro/kernels/
Ddetection_postprocess.cc390 const float intersection_xmax = std::min<float>(box_i.xmax, box_j.xmax); in ComputeIntersectionOverUnion() local
393 std::max<float>(intersection_xmax - intersection_xmin, 0.0); in ComputeIntersectionOverUnion()
/external/tensorflow/tensorflow/lite/kernels/
Ddetection_postprocess.cc405 const float intersection_xmax = std::min<float>(box_i.xmax, box_j.xmax); in ComputeIntersectionOverUnion() local
408 std::max<float>(intersection_xmax - intersection_xmin, 0.0); in ComputeIntersectionOverUnion()
/external/tensorflow/tensorflow/core/kernels/image/
Dnon_max_suppression_op.cc131 const T intersection_xmax = std::min<T>(xmax_i, xmax_j); in IOU() local
134 std::max<T>(intersection_xmax - intersection_xmin, static_cast<T>(0.0)); in IOU()
Dnon_max_suppression_op_test.cc768 const float intersection_xmax = std::min<float>(xmax_i, xmax_j); in AddIoUInput() local
771 std::max<float>(intersection_xmax - intersection_xmin, 0.0); in AddIoUInput()