Searched refs:intersection_xmin (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/lite/kernels/internal/reference/ |
D | non_max_suppression.h | 55 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/ |
D | detection_postprocess.cc | 388 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/ |
D | detection_postprocess.cc | 403 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/ |
D | non_max_suppression_op.cc | 129 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()
|
D | non_max_suppression_op_test.cc | 766 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()
|