From what I see the actual inference code is this line:
pose_results = inference_topdown(pose_estimator, img, bboxes)
The input is the model, one image, and one human detection result, can this have batch input? Like a list of images and bboxes:
pose_results = inference_topdown(pose_estimator, img_batches, bboxes_batches)
From what I see the actual inference code is this line: pose_results = inference_topdown(pose_estimator, img, bboxes) The input is the model, one image, and one human detection result, can this have batch input? Like a list of images and bboxes: pose_results = inference_topdown(pose_estimator, img_batches, bboxes_batches)