creativeIKEP / BlazePoseBarracuda

BlazePoseBarracuda is a human 2D/3D pose estimation neural network that runs the Mediapipe Pose (BlazePose) pipeline on the Unity Barracuda with GPU.
Apache License 2.0
198 stars 31 forks source link

Get landmark screen position #3

Closed kexar closed 2 years ago

kexar commented 2 years ago

Hi, is it possible to get a landmark screen position in C# script? Thanks

creativeIKEP commented 2 years ago

Hi, @kexar . BlazePoseBarracuda output screen landmarks in the GPU memory(ComputeBuffer), but you can transfer to CPU memory with ComputeBuffer.GetData method. You can get landmarks in C# script if you use ComputeBuffer.GetData method. Please check Usage Demo in README.md .