vladmandic / human

Human: AI-powered 3D Face Detection & Rotation Tracking, Face Description & Recognition, Body Pose Tracking, 3D Hand & Finger Tracking, Iris Analysis, Age & Gender & Emotion Prediction, Gaze Tracking, Gesture Recognition
https://vladmandic.github.io/human/demo/index.html
MIT License
2.32k stars 320 forks source link

Multi Person Pose Tracking in Live Demo #491

Closed aihkla closed 2 weeks ago

aihkla commented 2 weeks ago

Issue Description Hello, in the human example gallery, I saw that it is able to perform multi body tracking, but in the live demo, I changed the max object to more than 1, faces and other things works, but for pose it is still only tracking one.

Is it the model limitation? Or it is just the live demo not adjusting the parameter?

Steps to Reproduce

Expected Behavior Tracking multi person pose.

Environment

Diagnostics

Additional

vladmandic commented 2 weeks ago

for body you need to specify multi-person compliant model in config, then max-detected will work. example:

  config = {
    body: {
      enabled: true,
      maxDetected: 5,
      modelPath: 'https://vladmandic.github.io/human-models/models/movenet-multipose.json' },
    }
  }