Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Dnon_max_suppression.h52 const float intersection_ymax = std::min<float>(box_i_y_max, box_j_y_max); in ComputeIntersectionOverUnion() local
57 std::max<float>(intersection_ymax - intersection_ymin, 0.0) * in ComputeIntersectionOverUnion()
/external/tensorflow/tensorflow/lite/micro/kernels/
Ddetection_postprocess.cc389 const float intersection_ymax = std::min<float>(box_i.ymax, box_j.ymax); in ComputeIntersectionOverUnion() local
392 std::max<float>(intersection_ymax - intersection_ymin, 0.0) * in ComputeIntersectionOverUnion()
/external/tensorflow/tensorflow/lite/kernels/
Ddetection_postprocess.cc404 const float intersection_ymax = std::min<float>(box_i.ymax, box_j.ymax); in ComputeIntersectionOverUnion() local
407 std::max<float>(intersection_ymax - intersection_ymin, 0.0) * in ComputeIntersectionOverUnion()
/external/tensorflow/tensorflow/core/kernels/image/
Dnon_max_suppression_op.cc130 const T intersection_ymax = std::min<T>(ymax_i, ymax_j); in IOU() local
133 std::max<T>(intersection_ymax - intersection_ymin, static_cast<T>(0.0)) * in IOU()
Dnon_max_suppression_op_test.cc767 const float intersection_ymax = std::min<float>(ymax_i, ymax_j); in AddIoUInput() local
770 std::max<float>(intersection_ymax - intersection_ymin, 0.0) * in AddIoUInput()