Click or drag to resize

GraphGenerateBoundingBoxProposals Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation GenerateBoundingBoxProposals(
	Output scores,
	Output bbox_deltas,
	Output image_info,
	Output anchors,
	Output nms_threshold,
	Output pre_nms_topn,
	Output min_size,
	long post_nms_topn = 300,
	string opName = "GenerateBoundingBoxProposals"
)

Parameters

scores
Type: Emgu.TFOutput
Input to the operation.
bbox_deltas
Type: Emgu.TFOutput
Input to the operation.
image_info
Type: Emgu.TFOutput
Input to the operation.
anchors
Type: Emgu.TFOutput
Input to the operation.
nms_threshold
Type: Emgu.TFOutput
Input to the operation.
pre_nms_topn
Type: Emgu.TFOutput
Input to the operation.
min_size
Type: Emgu.TFOutput
Input to the operation.
post_nms_topn (Optional)
Type: SystemInt64
post nms topn
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] rois(type: DtFloat). [1] roi_probabilities(type: DtFloat).
See Also