forked from hybridgroup/gocv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
105 lines (88 loc) · 2.3 KB
/
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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// What it does:
//
// This example tracks objects such as cars or people passing across
// a horizontal or vertical line by using the Moments method.
// The Moments algorithm is not that accurate for counting multiple objects,
// however it is execution efficient.
//
// How to run:
//
// go run ./counter/main.go /path/to/video.avi 400 y 10
//
// +build example
package main
import (
"fmt"
"image"
"image/color"
"os"
"strconv"
"gocv.io/x/gocv"
)
func main() {
if len(os.Args) < 2 {
fmt.Println("How to run:\n\tcounter [filename] [line] [axis (x/y)] [width]")
return
}
// parse args
file := os.Args[1]
line, _ := strconv.Atoi(os.Args[2])
axis := os.Args[3]
width, _ := strconv.Atoi(os.Args[4])
video, err := gocv.VideoCaptureFile(file)
if err != nil {
fmt.Printf("Error opening video capture file: %s\n", file)
return
}
defer video.Close()
window := gocv.NewWindow("Track Window")
defer window.Close()
img := gocv.NewMat()
defer img.Close()
imgFG := gocv.NewMat()
defer imgFG.Close()
imgCleaned := gocv.NewMat()
defer imgCleaned.Close()
mog2 := gocv.NewBackgroundSubtractorMOG2()
defer mog2.Close()
count := 0
for {
if ok := video.Read(&img); !ok {
fmt.Printf("Device closed: %v\n", file)
return
}
if img.Empty() {
continue
}
// clean frame by removing background & eroding to eliminate artifacts
mog2.Apply(img, &imgFG)
kernel := gocv.GetStructuringElement(gocv.MorphRect, image.Pt(3, 3))
gocv.Erode(imgFG, &imgCleaned, kernel)
kernel.Close()
// calculate the image moment based on the cleaned frame
moments := gocv.Moments(imgCleaned, true)
area := moments["m00"]
if area >= 1 {
x := int(moments["m10"] / area)
y := int(moments["m01"] / area)
if axis == "y" {
if x > 0 && x < img.Cols() && y > line && y < line+width {
count++
}
gocv.Line(&img, image.Pt(0, line), image.Pt(img.Cols(), line), color.RGBA{255, 0, 0, 0}, 2)
}
if axis == "x" {
if y > 0 && y < img.Rows() && x > line && x < line+width {
count++
}
gocv.Line(&img, image.Pt(line, 0), image.Pt(line, img.Rows()), color.RGBA{255, 0, 0, 0}, 2)
}
}
gocv.PutText(&img, fmt.Sprintf("Count: %d", count), image.Pt(10, 20),
gocv.FontHersheyPlain, 1.2, color.RGBA{0, 255, 0, 0}, 2)
window.IMShow(img)
if window.WaitKey(1) >= 0 {
break
}
}
}