From a934bf4ae3725bff65d3fbf42fe3944a780b07fa Mon Sep 17 00:00:00 2001 From: Moses Turner Date: Mon, 13 Feb 2023 11:27:31 -0600 Subject: [PATCH] h/mercury: Bump the hand detection threshold up --- src/xrt/tracking/hand/mercury/hg_sync.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xrt/tracking/hand/mercury/hg_sync.cpp b/src/xrt/tracking/hand/mercury/hg_sync.cpp index e90cf148d..699494852 100644 --- a/src/xrt/tracking/hand/mercury/hg_sync.cpp +++ b/src/xrt/tracking/hand/mercury/hg_sync.cpp @@ -417,7 +417,7 @@ dispatch_and_process_hand_detections(struct HandTracking *hgt) float confidence_sum = (infos[0].outputs[hand_idx].hand_detection_confidence + infos[1].outputs[hand_idx].hand_detection_confidence) / float(num_views); - if (confidence_sum < 0.9) { + if (confidence_sum < 0.92) { continue; }