Greedily selects a subset of bounding boxes in descending order of score,
This operation performs non_max_suppression on the inputs per batch, across all classes. Prunes away boxes that have high intersection-over-union (IOU) overlap with previously selected boxes. Bounding boxes are supplied as [y1, x1, y2, x2], where (y1, x1) and (y2, x2) are the coordinates of any diagonal pair of box corners and the coordinates can be provided as normalized (i.e., lying in the interval [0, 1]) or absolute. Note that this algorithm is agnostic to where the origin is in the coordinate system. Also note that this algorithm is invariant to orthogonal transformations and translations of the coordinate system; thus translating or reflections of the coordinate system result in the same boxes being selected by the algorithm. The output of this operation is the final boxes, scores and classes tensor returned after performing non_max_suppression.
Nested Classes
class | CombinedNonMaxSuppression.Options | Optional attributes for CombinedNonMaxSuppression
|
Constants
String | OP_NAME | The name of this op, as known by TensorFlow core engine |
Public Methods
static CombinedNonMaxSuppression.Options |
clipBoxes(Boolean clipBoxes)
|
static CombinedNonMaxSuppression |
create(Scope scope, Operand<TFloat32> boxes, Operand<TFloat32> scores, Operand<TInt32> maxOutputSizePerClass, Operand<TInt32> maxTotalSize, Operand<TFloat32> iouThreshold, Operand<TFloat32> scoreThreshold, Options... options)
Factory method to create a class wrapping a new CombinedNonMaxSuppression operation.
|
Output<TFloat32> |
nmsedBoxes()
A [batch_size, max_detections, 4] float32 tensor
containing the non-max suppressed boxes.
|
Output<TFloat32> |
nmsedClasses()
A [batch_size, max_detections] float32 tensor
containing the classes for the boxes.
|
Output<TFloat32> |
nmsedScores()
A [batch_size, max_detections] float32 tensor
containing the scores for the boxes.
|
static CombinedNonMaxSuppression.Options |
padPerClass(Boolean padPerClass)
|
Output<TInt32> |
validDetections()
A [batch_size] int32 tensor indicating the number of
valid detections per batch item.
|
Inherited Methods
Constants
public static final String OP_NAME
The name of this op, as known by TensorFlow core engine
Public Methods
public static CombinedNonMaxSuppression.Options clipBoxes (Boolean clipBoxes)
Parameters
clipBoxes | If true, assume the box coordinates are between [0, 1] and clip the output boxes if they fall beyond [0, 1]. If false, do not do clipping and output the box coordinates as it is. |
---|
public static CombinedNonMaxSuppression create (Scope scope, Operand<TFloat32> boxes, Operand<TFloat32> scores, Operand<TInt32> maxOutputSizePerClass, Operand<TInt32> maxTotalSize, Operand<TFloat32> iouThreshold, Operand<TFloat32> scoreThreshold, Options... options)
Factory method to create a class wrapping a new CombinedNonMaxSuppression operation.
Parameters
scope | current scope |
---|---|
boxes | A 4-D float tensor of shape `[batch_size, num_boxes, q, 4]`. If `q` is 1 then same boxes are used for all classes otherwise, if `q` is equal to number of classes, class-specific boxes are used. |
scores | A 3-D float tensor of shape `[batch_size, num_boxes, num_classes]` representing a single score corresponding to each box (each row of boxes). |
maxOutputSizePerClass | A scalar integer tensor representing the maximum number of boxes to be selected by non max suppression per class |
maxTotalSize | A scalar representing maximum number of boxes retained over all classes. |
iouThreshold | A 0-D float tensor representing the threshold for deciding whether boxes overlap too much with respect to IOU. |
scoreThreshold | A 0-D float tensor representing the threshold for deciding when to remove boxes based on score. |
options | carries optional attributes values |
Returns
- a new instance of CombinedNonMaxSuppression
public Output<TFloat32> nmsedBoxes ()
A [batch_size, max_detections, 4] float32 tensor containing the non-max suppressed boxes.
public Output<TFloat32> nmsedClasses ()
A [batch_size, max_detections] float32 tensor containing the classes for the boxes.
public Output<TFloat32> nmsedScores ()
A [batch_size, max_detections] float32 tensor containing the scores for the boxes.
public static CombinedNonMaxSuppression.Options padPerClass (Boolean padPerClass)
Parameters
padPerClass | If false, the output nmsed boxes, scores and classes are padded/clipped to `max_total_size`. If true, the output nmsed boxes, scores and classes are padded to be of length `max_size_per_class`*`num_classes`, unless it exceeds `max_total_size` in which case it is clipped to `max_total_size`. Defaults to false. |
---|