Click or drag to resize

GraphNonMaxSuppressionV5 Method

https://www.emgu.com/wiki/index.php/Emgu_TF
NonMaxSuppressionV5

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation NonMaxSuppressionV5(
	Output boxes,
	Output scores,
	Output max_output_size,
	Output iou_threshold,
	Output score_threshold,
	Output soft_nms_sigma,
	bool pad_to_max_output_size = false,
	string opName = "NonMaxSuppressionV5"
)

Parameters

boxes
Type: Emgu.TFOutput
Input to the operation.
scores
Type: Emgu.TFOutput
Input to the operation.
max_output_size
Type: Emgu.TFOutput
Input to the operation.
iou_threshold
Type: Emgu.TFOutput
Input to the operation.
score_threshold
Type: Emgu.TFOutput
Input to the operation.
soft_nms_sigma
Type: Emgu.TFOutput
Input to the operation.
pad_to_max_output_size (Optional)
Type: SystemBoolean
pad to max output size
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] selected_indices(type: DtInt32). [1] selected_scores(type: DtInvalid). [2] valid_outputs(type: DtInt32).
See Also