/external/tensorflow/tensorflow/core/kernels/ |
D | non_max_suppression_op.cc | 157 const Tensor& max_output_size, const float score_threshold, in DoNonMaxSuppressionOp() argument 177 if (static_cast<float>(scores_data[i]) > score_threshold) { in DoNonMaxSuppressionOp() 229 const float score_threshold, const float iou_threshold, in BatchedNonMaxSuppressionOp() argument 308 if (class_scores_data[i] > score_threshold) { in BatchedNonMaxSuppressionOp() 545 const Tensor& score_threshold = context->input(4); in Compute() local 547 context, TensorShapeUtils::IsScalar(score_threshold.shape()), in Compute() 549 score_threshold.shape().DebugString())); in Compute() 550 const float score_threshold_val = score_threshold.scalar<float>()(); in Compute() 596 const Tensor& score_threshold = context->input(4); in Compute() local 598 context, TensorShapeUtils::IsScalar(score_threshold.shape()), in Compute() [all …]
|
D | non_max_suppression_op.h | 30 float iou_threshold, float score_threshold,
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | image_ops_test.py | 749 score_threshold = array_ops.placeholder(score_threshold_np.dtype, 757 score_threshold=score_threshold, 762 score_threshold: score_threshold_np, 787 score_threshold = array_ops.placeholder(score_threshold_np.dtype, 795 score_threshold=score_threshold, 800 score_threshold: score_threshold_np, 829 score_threshold = array_ops.placeholder(score_threshold_np.dtype, 837 score_threshold=score_threshold, 843 score_threshold: score_threshold_np 872 score_threshold = array_ops.placeholder(score_threshold_np.dtype, [all …]
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_NonMaxSuppressionWithOverlaps.pbtxt | 32 name: "score_threshold" 49 `score_threshold` are removed. N-by-n overlap values are supplied as square matrix, 59 overlaps, scores, max_output_size, overlap_threshold, score_threshold)
|
D | api_def_NonMaxSuppressionV3.pbtxt | 31 name: "score_threshold" 48 `score_threshold` are removed. Bounding boxes are supplied as 61 boxes, scores, max_output_size, iou_threshold, score_threshold)
|
D | api_def_NonMaxSuppressionV4.pbtxt | 31 name: "score_threshold" 62 `score_threshold` are removed. Bounding boxes are supplied as 75 boxes, scores, max_output_size, iou_threshold, score_threshold)
|
D | api_def_CombinedNonMaxSuppression.pbtxt | 39 name: "score_threshold"
|
/external/tensorflow/tensorflow/python/ops/ |
D | image_ops_impl.py | 2445 score_threshold=float('-inf'), argument 2486 score_threshold = ops.convert_to_tensor( 2487 score_threshold, name='score_threshold') 2489 iou_threshold, score_threshold) 2497 score_threshold=float('-inf'), argument 2541 score_threshold = ops.convert_to_tensor( 2542 score_threshold, name='score_threshold') 2545 boxes, scores, max_output_size, iou_threshold, score_threshold, 2549 boxes, scores, max_output_size, iou_threshold, score_threshold) 2557 score_threshold=float('-inf'), argument [all …]
|
D | image_ops_test.py | 4376 score_threshold = float('-inf') 4384 boxes, scores, max_output_size, iou_threshold, score_threshold) 4436 score_threshold = constant_op.constant(score_threshold_np) 4442 score_threshold) 4466 score_threshold = 0.4 4469 overlaps, scores, max_output_size, overlap_threshold, score_threshold)
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.image.pbtxt | 37 …ax_output_size_per_class\', \'max_total_size\', \'iou_threshold\', \'score_threshold\', \'pad_per_… 125 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'name\'],… 129 …verlaps\', \'scores\', \'max_output_size\', \'overlap_threshold\', \'score_threshold\', \'name\'],… 133 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'pad_to_m…
|
D | tensorflow.pbtxt | 505 …ax_output_size_per_class\', \'max_total_size\', \'iou_threshold\', \'score_threshold\', \'pad_per_…
|
D | tensorflow.raw_ops.pbtxt | 597 …ax_output_size_per_class\', \'max_total_size\', \'iou_threshold\', \'score_threshold\', \'pad_per_… 2153 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'name\'],… 2157 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'pad_to_m… 2161 …verlaps\', \'scores\', \'max_output_size\', \'overlap_threshold\', \'score_threshold\', \'name\'],…
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.image.pbtxt | 37 …ax_output_size_per_class\', \'max_total_size\', \'iou_threshold\', \'score_threshold\', \'pad_per_… 125 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'name\'],… 129 …verlaps\', \'scores\', \'max_output_size\', \'overlap_threshold\', \'score_threshold\', \'name\'],… 133 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'pad_to_m…
|
D | tensorflow.raw_ops.pbtxt | 597 …ax_output_size_per_class\', \'max_total_size\', \'iou_threshold\', \'score_threshold\', \'pad_per_… 2153 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'name\'],… 2157 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'pad_to_m… 2161 …verlaps\', \'scores\', \'max_output_size\', \'overlap_threshold\', \'score_threshold\', \'name\'],…
|
D | tensorflow.pbtxt | 965 …ax_output_size_per_class\', \'max_total_size\', \'iou_threshold\', \'score_threshold\', \'pad_per_…
|
/external/tensorflow/tensorflow/core/ops/ |
D | image_ops.cc | 121 ShapeHandle score_threshold; in NMSShapeFn() local 122 TF_RETURN_IF_ERROR(c->WithRank(c->input(4), 0, &score_threshold)); in NMSShapeFn() 880 ShapeHandle score_threshold; in __anon6a71d27f1902() local 881 TF_RETURN_IF_ERROR(c->WithRank(c->input(4), 0, &score_threshold)); in __anon6a71d27f1902()
|
D | ops.pbtxt | 5726 name: "score_threshold" 20914 name: "score_threshold" 20954 name: "score_threshold" 21005 name: "score_threshold"
|
/external/libaom/libaom/aom_dsp/ |
D | noise_model.c | 661 const float score_threshold = scores[top_nth_percentile].score; in aom_flat_block_finder_run() local 663 if (scores[i].score >= score_threshold) { in aom_flat_block_finder_run()
|
/external/tensorflow/tensorflow/go/op/ |
D | wrappers.go | 20384 …s tf.Output, max_output_size tf.Output, overlap_threshold tf.Output, score_threshold tf.Output) (s… 20391 overlaps, scores, max_output_size, overlap_threshold, score_threshold, 37733 …cores tf.Output, max_output_size tf.Output, iou_threshold tf.Output, score_threshold tf.Output) (s… 37740 boxes, scores, max_output_size, iou_threshold, score_threshold, 37795 …cores tf.Output, max_output_size tf.Output, iou_threshold tf.Output, score_threshold tf.Output, op… 37806 boxes, scores, max_output_size, iou_threshold, score_threshold, 37891 …_class tf.Output, max_total_size tf.Output, iou_threshold tf.Output, score_threshold tf.Output, op… 37902 boxes, scores, max_output_size_per_class, max_total_size, iou_threshold, score_threshold,
|
/external/tensorflow/tensorflow/core/ops/compat/ |
D | ops_history.v2.pbtxt | 13200 name: "score_threshold" 41503 name: "score_threshold" 41530 name: "score_threshold" 41570 name: "score_threshold" 41608 name: "score_threshold" 41659 name: "score_threshold"
|
D | ops_history.v1.pbtxt | 13258 name: "score_threshold" 42026 name: "score_threshold" 42053 name: "score_threshold" 42093 name: "score_threshold" 42131 name: "score_threshold" 42182 name: "score_threshold"
|