{"id":22100898,"url":"https://github.com/natmlx/movenet-multipose-unity","last_synced_at":"2025-07-25T00:30:54.229Z","repository":{"id":68100870,"uuid":"519959517","full_name":"natmlx/movenet-multipose-unity","owner":"natmlx","description":"Multiple-person pose detection in Unity Engine.","archived":false,"fork":false,"pushed_at":"2024-11-26T17:23:36.000Z","size":1854,"stargazers_count":11,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-11-26T18:28:26.916Z","etag":null,"topics":["mediapipe","natml","pose-detection","pose-estimation","unity"],"latest_commit_sha":null,"homepage":"https://demos.natml.ai/@natml/movenet-multipose","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/natmlx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-08-01T04:10:39.000Z","updated_at":"2024-11-26T17:23:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"a56ecaee-feb3-4768-b74f-8462d7294b91","html_url":"https://github.com/natmlx/movenet-multipose-unity","commit_stats":null,"previous_names":["natml-hub/movenet-multipose"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natmlx%2Fmovenet-multipose-unity","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natmlx%2Fmovenet-multipose-unity/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natmlx%2Fmovenet-multipose-unity/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natmlx%2Fmovenet-multipose-unity/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/natmlx","download_url":"https://codeload.github.com/natmlx/movenet-multipose-unity/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":227489161,"owners_count":17780529,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mediapipe","natml","pose-detection","pose-estimation","unity"],"created_at":"2024-12-01T05:17:14.461Z","updated_at":"2025-07-25T00:30:54.208Z","avatar_url":"https://github.com/natmlx.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MoveNet Multipose\n[MoveNet](https://blog.tensorflow.org/2021/05/next-generation-pose-detection-with-movenet-and-tensorflowjs.html) multiple body pose detection from Google MediaPipe.\n\n![demo](demo.gif) \n\n## Predicting Poses in an Image\n[Install Function](https://docs.fxn.ai) in your Unity project then create a Function client:\n```csharp\nusing Function;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\n// Create a Function client\nvar fxn = FunctionUnity.Create();\n```\n\nThen predict the poses in an image:\n```csharp\n// Predict poses\nvar prediction = await fxn.Predictions.Create(\n    tag: \"@natml/movenet-multipose\",\n    inputs: new () { [\"image\"] = image.ToImage() }\n);\nvar poseObjects = prediction.results[0] as JArray;\n```\n\nFinally, parse the detected poses with the `Pose` struct:\n```csharp\n// Parse the detected poses\nPose[] poses = poseObjects.ToObject\u003cPose[]\u003e(Pose.Serializer);\n```\n\n\u003e [!NOTE]\n\u003e [Check out the schema](https://fxn.ai/@natml/movenet-multipose) of the returned poses.\n\n## Requirements\n- Unity 2022.3+\n\n## Supported Platforms\n- Android API level 24+\n- iOS 14+\n- macOS 12+ (Apple Silicon and Intel)\n- Windows 10+ (64-bit only)\n- WebGL:\n    - Chrome 91+\n    - Firefox 90+\n    - Safari 16.4+\n\n## Resources\n- Join the [Function community on Discord](https://natml.ai/community).\n- See the [Function documentation](https://docs.fxn.ai).\n- Check out [Function on GitHub](https://github.com/fxnai).\n- Email support at [hi@fxn.ai](mailto:hi@fxn.ai).\n\nThank you very much!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnatmlx%2Fmovenet-multipose-unity","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnatmlx%2Fmovenet-multipose-unity","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnatmlx%2Fmovenet-multipose-unity/lists"}