我可以按照以下教程在我的 Windows 10 计算机上运行 MediaPipe 的 Pose Landmark 检测:https ://google.github.io/mediapipe/solutions/pose.html#python-solution-api ,但我不确定我如何使用 GPU 运行此示例。
我知道它在 CPU 上运行非常快,但我想使用该模型,model_complexity=2
因为它最准确,但这使得它在我的 CPU 上运行缓慢(大约 5 FPS)。我有 GPU,所以如果我可以在 GPU 上运行,它会大大加快速度。
我找到了以下资源。
- https://github.com/google/mediapipe/tree/master/mediapipe/modules/pose_landmark
- https://github.com/google/mediapipe/tree/master/mediapipe/modules/pose_detection
它在这些链接中提到了 GPU,但我不确定如何使用这些模块。如果有人可以提供有关如何在 GPU 上运行 MediaPipe 的 Pose Landmark 检测的链接或快速说明,我将不胜感激。