From da65ca7417bb7c393197abce5653fb89d3e00b59 Mon Sep 17 00:00:00 2001 From: parkersruth Date: Wed, 24 Jul 2024 15:56:25 -0700 Subject: [PATCH] ignore camera confidence when syncing with hand raise --- utilsChecker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilsChecker.py b/utilsChecker.py index ee8a390a..63e3e088 100644 --- a/utilsChecker.py +++ b/utilsChecker.py @@ -1033,7 +1033,7 @@ def synchronizeVideoKeypoints(keypointList, confidenceList, # Re-sample the lists vertVelList = [v[idxStart:idxEnd] for v in vertVelList] mkrSpeedList = [v[:,idxStart:idxEnd] for v in mkrSpeedList] - handPunchVertPositionList = [p[:,idxStart:idxEnd] for p in handPunchVertPositionList] + # handPunchVertPositionList = [p[:,idxStart:idxEnd] for p in handPunchVertPositionList] allMarkerList = [p[:,idxStart:idxEnd] for p in allMarkerList] confSyncList= [c[:,idxStart:idxEnd] for c in confidenceList]