Files
go-darknet/bounding_box.go
2018-06-05 03:05:11 +08:00

10 lines
151 B
Go

package darknet
// BoundingBox represents a bounding box.
type BoundingBox struct {
X float32
Y float32
Width float32
Height float32
}