You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"detectStart() was called more than once without calling detectStop(). The lastest detectStart() call will be used and the previous calls will be ignored."
143
+
);
144
+
}
145
+
this.prevCall="start";
138
146
}
139
147
140
148
/**
141
-
* Stop the detection loop before next frame update
149
+
* Stop the detection loop before next detection loop runs.
142
150
*/
143
151
detectStop(){
144
152
if(this.detecting)this.signalStop=true;
153
+
this.prevCall="stop";
145
154
}
146
155
147
156
/**
148
157
* Internal function to call estimateHands in a loop
158
+
* Can be started by detectStart() and terminated by detectStop()
0 commit comments