Home
last modified time | relevance | path

Searched refs:nms_threshold (Results 1 – 22 of 22) sorted by relevance

/external/ComputeLibrary/src/runtime/CPP/functions/
DCPPNonMaximumSuppression.cpp34 const float score_threshold, const float nms_threshold) in configure() argument
36 … ARM_COMPUTE_LOG_PARAMS(bboxes, scores, indices, max_output_size, score_threshold, nms_threshold); in configure()
39 k->configure(bboxes, scores, indices, max_output_size, score_threshold, nms_threshold); in configure()
45 const float score_threshold, const float nms_threshold) in validate() argument
47 …pressionKernel::validate(bboxes, scores, indices, max_output_size, score_threshold, nms_threshold); in validate()
DCPPDetectionOutputLayer.cpp294 const float nms_threshold, const float eta, const int top_k, in ApplyNMSFast() argument
322 float adaptive_threshold = nms_threshold; in ApplyNMSFast()
510 …ApplyNMSFast(bboxes, scores, _info.confidence_threshold(), _info.nms_threshold(), _info.eta(), _in… in run()
/external/ComputeLibrary/tests/validation/fixtures/
DNonMaxSuppressionFixture.h50 …(TensorShape input_shape, unsigned int max_output_size, float score_threshold, float nms_threshold) in setup() argument
56 …e_target(input_shape, scores_shape, output_shape, max_output_size, score_threshold, nms_threshold); in setup()
57 …eference(input_shape, scores_shape, output_shape, max_output_size, score_threshold, nms_threshold); in setup()
69 … unsigned int max_output_size, float score_threshold, float nms_threshold) in compute_target() argument
78 … nms_func.configure(&bboxes, &scores, &indices, max_output_size, score_threshold, nms_threshold); in compute_target()
103 … unsigned int max_output_size, float score_threshold, float nms_threshold) in compute_reference() argument
114 …nce::non_max_suppression(bboxes, scores, indices, max_output_size, score_threshold, nms_threshold); in compute_reference()
/external/ComputeLibrary/arm_compute/runtime/CPP/functions/
DCPPNonMaximumSuppression.h51 …or *indices, unsigned int max_output_size, const float score_threshold, const float nms_threshold);
64 const float score_threshold, const float nms_threshold);
/external/tensorflow/tensorflow/core/kernels/image/
Dgenerate_box_proposals_op.cu.cc330 float nms_threshold; in Compute() local
333 OP_REQUIRES_OK(context, GetScalarValue(context, 4, &nms_threshold)); in Compute()
334 if (nms_threshold < 0 || nms_threshold > 1.0) { in Compute()
336 "nms_threshold should be between 0 and 1. Got ", nms_threshold)); in Compute()
516 nms_threshold, d_image_boxes_keep_list, in Compute()
/external/ComputeLibrary/tests/validation/CPP/
DNonMaximumSuppression.cpp116 … bbox_info, scores_info, indices_info, max_out, score_threshold, nms_threshold, expected)
121 … max_out,score_threshold,nms_threshold)) == expected, framework::LogLevel::ERRORS);
/external/ComputeLibrary/tests/validation/reference/
DNonMaxSuppression.h38 … unsigned int max_output_size, float score_threshold, float nms_threshold);
DNonMaxSuppression.cpp140 … unsigned int max_output_size, float score_threshold, float nms_threshold) in non_max_suppression() argument
152 if(is_box_selected(c, bboxes, selected, nms_threshold)) in non_max_suppression()
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/
DGenerateBoundingBoxProposals.pbtxt20 name: "nms_threshold"
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/
DGenerateBoundingBoxProposals.pbtxt20 name: "nms_threshold"
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_GenerateBoundingBoxProposals.pbtxt30 name: "nms_threshold"
71 `nms_threshold` intersection-over-union (iou) value, discarding boxes where shorter
/external/ComputeLibrary/arm_compute/core/
DTypes.h996 …cation, DetectionOutputLayerCodeType code_type, int keep_top_k, float nms_threshold, int top_k = -…
1002 _nms_threshold(nms_threshold), in _num_classes()
1038 float nms_threshold() const in nms_threshold() function
/external/ComputeLibrary/examples/
Dgraph_ssd_mobilenet.cpp373 const float nms_threshold = 0.45f; in create_graph_float() local
380 …putLayerInfo(num_classes, share_location, detection_type, keep_top_k, nms_threshold, top_k, label_… in create_graph_float()
/external/tensorflow/tensorflow/core/ops/
Dimage_ops.cc1123 ShapeHandle scores, images, bounding_boxes, anchors, nms_threshold, in __anonf6f833bb1e02() local
1133 TF_RETURN_IF_ERROR(c->WithRank(c->input(4), 0, &nms_threshold)); in __anonf6f833bb1e02()
Dops.pbtxt20769 name: "nms_threshold"
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.image.pbtxt109 …argspec: "args=[\'scores\', \'bbox_deltas\', \'image_info\', \'anchors\', \'nms_threshold\', \'pre…
Dtensorflow.raw_ops.pbtxt1853 …argspec: "args=[\'scores\', \'bbox_deltas\', \'image_info\', \'anchors\', \'nms_threshold\', \'pre…
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.image.pbtxt113 …argspec: "args=[\'scores\', \'bbox_deltas\', \'image_info\', \'anchors\', \'nms_threshold\', \'pre…
Dtensorflow.raw_ops.pbtxt1853 …argspec: "args=[\'scores\', \'bbox_deltas\', \'image_info\', \'anchors\', \'nms_threshold\', \'pre…
/external/tensorflow/tensorflow/python/ops/
Dimage_ops_impl.py5842 nms_threshold=0.7, argument
5880 nms_threshold=nms_threshold,
/external/ComputeLibrary/utils/
DTypePrinter.h2514 << "NMSThreshold=" << detection_info.nms_threshold() << ","
/external/tensorflow/tensorflow/go/op/
Dwrappers.go18781 …tput, bbox_deltas tf.Output, image_info tf.Output, anchors tf.Output, nms_threshold tf.Output, pre…
18792 scores, bbox_deltas, image_info, anchors, nms_threshold, pre_nms_topn, min_size,