Searched refs:intersection_xmax (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/lite/kernels/internal/reference/ |
D | non_max_suppression.h | 53 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/ |
D | detection_postprocess.cc | 390 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/ |
D | detection_postprocess.cc | 405 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/ |
D | non_max_suppression_op.cc | 131 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()
|
D | non_max_suppression_op_test.cc | 768 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()
|