Searched refs:intersection_ymin (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/lite/kernels/internal/reference/ |
D | non_max_suppression.h | 54 const float intersection_ymin = std::max<float>(box_i_y_min, box_j_y_min); 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 | 387 const float intersection_ymin = std::max<float>(box_i.ymin, box_j.ymin); in ComputeIntersectionOverUnion() local 392 std::max<float>(intersection_ymax - intersection_ymin, 0.0) * in ComputeIntersectionOverUnion()
|
/external/tensorflow/tensorflow/lite/kernels/ |
D | detection_postprocess.cc | 402 const float intersection_ymin = std::max<float>(box_i.ymin, box_j.ymin); 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 | 128 const T intersection_ymin = std::max<T>(ymin_i, ymin_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 | 765 const float intersection_ymin = std::max<float>(ymin_i, ymin_j); in AddIoUInput() local 770 std::max<float>(intersection_ymax - intersection_ymin, 0.0) * in AddIoUInput()
|