mirror of
https://github.com/LdDl/go-darknet.git
synced 2025-09-27 12:02:19 +08:00
10 lines
151 B
Go
10 lines
151 B
Go
package darknet
|
|
|
|
// BoundingBox represents a bounding box.
|
|
type BoundingBox struct {
|
|
X float32
|
|
Y float32
|
|
Width float32
|
|
Height float32
|
|
}
|