From 6653cff1041476e4e8267e6a5a2752d458e938f2 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Wed, 4 Nov 2020 01:13:40 -0500 Subject: [PATCH] remove debug code --- src/handpose/handpipeline.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/handpose/handpipeline.js b/src/handpose/handpipeline.js index 24d9a3bc..90617376 100644 --- a/src/handpose/handpipeline.js +++ b/src/handpose/handpipeline.js @@ -176,7 +176,6 @@ class HandPipeline { } shouldUpdateRegionsOfInterest() { - console.log(this.regionsOfInterest.length, this.runsWithoutHandDetector, !this.regionsOfInterest || (this.regionsOfInterest.length === 0) || (this.runsWithoutHandDetector >= this.skipFrames)); return !this.regionsOfInterest || (this.regionsOfInterest.length === 0) || (this.runsWithoutHandDetector >= this.skipFrames); } }