-
Notifications
You must be signed in to change notification settings - Fork 871
/
main.go
54 lines (44 loc) · 936 Bytes
/
main.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
// What it does:
//
// This example uses the VideoCapture class to test if you can capture video
// from a connected webcam, by trying to read 100 frames.
//
// How to run:
//
// go run ./cmd/captest/main.go
//
package main
import (
"fmt"
"os"
"gocv.io/x/gocv"
)
func main() {
if len(os.Args) < 2 {
fmt.Println("How to run:\n\tcaptest [camera ID]")
return
}
// parse args
deviceID := os.Args[1]
webcam, err := gocv.OpenVideoCapture(deviceID)
if err != nil {
fmt.Printf("Error opening video capture device: %v\n", deviceID)
return
}
defer webcam.Close()
// streaming, capture from webcam
buf := gocv.NewMat()
defer buf.Close()
fmt.Printf("Start reading device: %v\n", deviceID)
for i := 0; i < 100; i++ {
if ok := webcam.Read(&buf); !ok {
fmt.Printf("Device closed: %v\n", deviceID)
return
}
if buf.Empty() {
continue
}
fmt.Printf("Read frame %d\n", i+1)
}
fmt.Println("Done.")
}