mirror of
https://github.com/LdDl/go-darknet.git
synced 2025-09-27 03:56:18 +08:00
12 lines
156 B
Go
12 lines
156 B
Go
package darknet
|
|
|
|
import (
|
|
"image"
|
|
)
|
|
|
|
// BoundingBox represents a bounding box.
|
|
type BoundingBox struct {
|
|
StartPoint image.Point
|
|
EndPoint image.Point
|
|
}
|