The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

h/mercury: Bump the hand detection threshold up

+1 -1
+1 -1
src/xrt/tracking/hand/mercury/hg_sync.cpp
··· 417 417 float confidence_sum = (infos[0].outputs[hand_idx].hand_detection_confidence + 418 418 infos[1].outputs[hand_idx].hand_detection_confidence) / 419 419 float(num_views); 420 - if (confidence_sum < 0.9) { 420 + if (confidence_sum < 0.92) { 421 421 continue; 422 422 } 423 423