Searched refs:intersection_ymax (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/lite/kernels/internal/reference/ |
D | non_max_suppression.h | 52 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/ |
D | detection_postprocess.cc | 389 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/ |
D | detection_postprocess.cc | 404 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/ |
D | non_max_suppression_op.cc | 130 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()
|
D | non_max_suppression_op_test.cc | 767 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()
|