forked from peterbraden/node-opencv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bgsubtractor.js
120 lines (104 loc) · 2.51 KB
/
bgsubtractor.js
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
var path = require('path'),
cv = require('../lib/opencv');
var bg = null;
// gc stuff which we shojld not need with release() begin used
//require("v8").setFlagsFromString('--expose_gc');
//var gc = require("vm").runInNewContext('gc');
var do_sync = function(done){
// When opening a file, the full path must be passed to opencv
var vid = new cv.VideoCapture(path.join(__dirname, 'files', 'motion.mov'));
var x = 0;
// synchronous
var iter = function(){
vid.read(function(err, m2){
if (err) throw err;
var mat = bg.apply(m2);
m2.release();
delete m2;
// mat is a monochrome img where moving objects are white
// do something with the return data
// we are done with the return data
mat.release();
delete mat;
if (x++<100){
//console.log("iter "+x);
setTimeout(iter, 1);
} else {
delete vid;
console.log("bg sync done");
// gc(); - no need to gc if we release both m2 and mat
if (undefined !== done)
done();
}
})
};
iter();
};
var do_async = function(done){
// restart video read
var vid = new cv.VideoCapture(path.join(__dirname, 'files', 'motion.mov'));
var x = 0;
// asynchronous
var iter = function(){
vid.read(function(err, m2){
if (err) throw err;
bg.apply(m2, function(err, mat){
// do something with the return data
// we are done with the return data
mat.release();
delete mat;
if (err) throw err;
// mat is a monochrome img where moving objects are white
if (x++<100){
//console.log("iter "+x);
iter();
} else {
console.log("bg async done");
delete vid;
// gc(); - no need to gc if we release both m2 and mat
if (undefined !== done)
done();
}
});
m2.release();
})
};
iter();
};
var do_default = function( done ){
console.log("doing Default");
bg = new cv.BackgroundSubtractor();
do_sync( function(){
do_async(done);
});
}
var do_gmg = function( done ){
console.log("doing GMG");
bg = cv.BackgroundSubtractor.createGMG();
do_sync( function(){
//console.log("not doing GMG Async - crashes my pi");
do_async(done);
});
}
var do_mog = function( done ){
console.log("doing MOG");
bg = cv.BackgroundSubtractor.createMOG();
do_sync( function(){
do_async(done);
});
}
var do_mog2 = function( done ){
console.log("doing MOG2");
bg = cv.BackgroundSubtractor.createMOG2();
do_sync( function(){
do_async(done);
});
}
do_default(function(){
do_mog(function(){
do_mog2(function(){
do_gmg(function(){
});
});
});
});