robocar-steering/pkg/steering/bbox.go
2022-08-21 22:35:02 +02:00

12 lines
189 B
Go

package steering
import (
"image"
)
func GroupBBoxes(bboxes []*image.Rectangle) []*image.Rectangle {
resp := make([]*image.Rectangle, 0, len(bboxes))
copy(bboxes, resp)
return resp
}