Click or drag to resize

GraphCombinedNonMaxSuppression Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation CombinedNonMaxSuppression(
	Output boxes,
	Output scores,
	Output max_output_size_per_class,
	Output max_total_size,
	Output iou_threshold,
	Output score_threshold,
	bool pad_per_class = false,
	bool clip_boxes = true,
	string opName = "CombinedNonMaxSuppression"
)

Parameters

boxes
Type: Emgu.TFOutput
Input to the operation.
scores
Type: Emgu.TFOutput
Input to the operation.
max_output_size_per_class
Type: Emgu.TFOutput
Input to the operation.
max_total_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.
pad_per_class (Optional)
Type: SystemBoolean
pad per class
clip_boxes (Optional)
Type: SystemBoolean
clip boxes
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] nmsed_boxes(type: DtFloat). [1] nmsed_scores(type: DtFloat). [2] nmsed_classes(type: DtFloat). [3] valid_detections(type: DtInt32).
See Also