mirror of
https://github.com/LdDl/go-darknet.git
synced 2025-10-05 15:46:49 +08:00
11 lines
244 B
Go
11 lines
244 B
Go
package darknet
|
|
|
|
import "time"
|
|
|
|
// DetectionResult represents the inference results from the network.
|
|
type DetectionResult struct {
|
|
// Detections []*Detection
|
|
NetworkOnlyTimeTaken time.Duration
|
|
OverallTimeTaken time.Duration
|
|
}
|