Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Dnon_max_suppression.h55 const float intersection_xmin = std::max<float>(box_i_x_min, box_j_x_min); in ComputeIntersectionOverUnion() local
58 std::max<float>(intersection_xmax - intersection_xmin, 0.0); in ComputeIntersectionOverUnion()
/external/tensorflow/tensorflow/lite/micro/kernels/
Ddetection_postprocess.cc388 const float intersection_xmin = std::max<float>(box_i.xmin, box_j.xmin); in ComputeIntersectionOverUnion() local
393 std::max<float>(intersection_xmax - intersection_xmin, 0.0); in ComputeIntersectionOverUnion()
/external/tensorflow/tensorflow/lite/kernels/
Ddetection_postprocess.cc403 const float intersection_xmin = std::max<float>(box_i.xmin, box_j.xmin); 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.cc129 const T intersection_xmin = std::max<T>(xmin_i, xmin_j); in IOU() local
134 std::max<T>(intersection_xmax - intersection_xmin, static_cast<T>(0.0)); in IOU()
Dnon_max_suppression_op_test.cc766 const float intersection_xmin = std::max<float>(xmin_i, xmin_j); in AddIoUInput() local
771 std::max<float>(intersection_xmax - intersection_xmin, 0.0); in AddIoUInput()