Enum CenterPointBox
Options for the formatting of the box data for NonMaxSuppression
.
Namespace: Unity.Sentis.Layers
Assembly: Unity.Sentis.dll
Syntax
public enum CenterPointBox
Fields
Name | Description |
---|---|
Center | Use PyTorch box formatting. Box data is [x_center, y_center, width, height]. |
Corners | Use TensorFlow box formatting. Box data is [y1, x1, y2, x2] where (y1, x1) and (y2, x2) are the normalized coordinates of any diagonal pair of box corners. |