79089522

Date: 2024-10-15 10:35:08
Score: 1
Natty:
Report link

The problem with confidence (certainty) for all detected hand points returning as 0.0 can be due to several possible causes. Here are some steps you can try to fix the problem:

  1. Incorrect use of parameters

  2. Alternative parameters

    With mp_hands.Hands(static_image_mode=False, max_num_hands=2, min_detection_confidence=0.5, min_tracking_confidence=0.5) as hands:

  3. Update/check MediaPipe version

  4. Make sure the camera or video is of good quality

  5. Debug the results

    if hand_results.multi_hand_landmarks: For hand_landmarks in hand_results.multi_hand_landmarks: print(hand_landmarks)

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Andrei