-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgo-yolo.go
84 lines (78 loc) · 2.05 KB
/
go-yolo.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Copyright 2017 <[email protected]>. All rights reserved.
// Package yolo provides darknet binding.
package yolo
// #cgo pkg-config: opencv
// #cgo linux LDFLAGS: -ldarknet -lm -L/usr/local/cuda/lib64 -lcuda -lcudart -lcublas -lcurand -lcudnn
// #cgo darwin LDFLAGS: -ldarknet
// #include "yolo.h"
import "C"
// SetGPU set a gpu device you want
func SetGPU(gpu int) {
C.set_gpu(C.int(gpu))
}
// ImageDetector recognize a image
func ImageDetector(dc, cf, wf, fn string, t, ht float64, of ...string) {
if len(of) > 0 {
C.image_detector(
C.CString(dc),
C.CString(cf),
C.CString(wf),
C.CString(fn),
C.float(t),
C.float(ht),
C.CString(of[0]))
} else {
C.image_detector(
C.CString(dc),
C.CString(cf),
C.CString(wf),
C.CString(fn),
C.float(t),
C.float(ht),
nil)
}
}
// VideoDetector recognize a video
func VideoDetector(dc, cf, wf, fn string, t, ht float64, of ...string) {
if len(of) > 0 {
C.video_detector(
C.CString(dc),
C.CString(cf),
C.CString(wf),
C.CString(fn),
C.float(t),
C.float(ht),
C.CString(of[0]))
} else {
C.video_detector(
C.CString(dc),
C.CString(cf),
C.CString(wf),
C.CString(fn),
C.float(t),
C.float(ht),
nil)
}
}
// CameraDetector recognize a camera stream
func CameraDetector(dc, cf, wf string, i int, t, ht float64, of ...string) {
if len(of) > 0 {
C.camera_detector(
C.CString(dc),
C.CString(cf),
C.CString(wf),
C.int(i),
C.float(t),
C.float(ht),
C.CString(of[0]))
} else {
C.camera_detector(
C.CString(dc),
C.CString(cf),
C.CString(wf),
C.int(i),
C.float(t),
C.float(ht),
nil)
}
}