{"id":15967024,"url":"https://github.com/creativeikep/poselandmarkbarracuda","last_synced_at":"2025-03-18T00:30:48.747Z","repository":{"id":45091534,"uuid":"366999169","full_name":"creativeIKEP/PoseLandmarkBarracuda","owner":"creativeIKEP","description":"PoseLandmarkBarracuda is a human pose landmark detecter that runs the Mediapipe Pose Landmark neural network model on the Unity Barracuda.","archived":false,"fork":false,"pushed_at":"2022-01-09T12:38:39.000Z","size":60509,"stargazers_count":16,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-28T05:56:30.414Z","etag":null,"topics":["barracuda","deep-learning","human","landmark","mediapipe","pose","unity"],"latest_commit_sha":null,"homepage":"","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/creativeIKEP.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-05-13T09:29:02.000Z","updated_at":"2024-02-17T13:41:24.000Z","dependencies_parsed_at":"2022-08-12T11:40:59.729Z","dependency_job_id":null,"html_url":"https://github.com/creativeIKEP/PoseLandmarkBarracuda","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creativeIKEP%2FPoseLandmarkBarracuda","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creativeIKEP%2FPoseLandmarkBarracuda/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creativeIKEP%2FPoseLandmarkBarracuda/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creativeIKEP%2FPoseLandmarkBarracuda/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/creativeIKEP","download_url":"https://codeload.github.com/creativeIKEP/PoseLandmarkBarracuda/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243893840,"owners_count":20364916,"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":["barracuda","deep-learning","human","landmark","mediapipe","pose","unity"],"created_at":"2024-10-07T18:07:42.277Z","updated_at":"2025-03-18T00:30:44.151Z","avatar_url":"https://github.com/creativeIKEP.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PoseLandmarkBarracuda\n![demo](https://user-images.githubusercontent.com/34697515/126494250-a7f2520c-886b-46ab-ad69-645c0d7e91da.png)\n\nPoseLandmarkBarracuda is a human pose landmark detecter that runs the [Mediapipe Pose](https://google.github.io/mediapipe/solutions/pose) Landmark neural network model on the [Unity Barracuda](https://docs.unity3d.com/Packages/com.unity.barracuda@latest).\n\nPoseLandmarkBarracuda implementation is inspired by [HandLandmarkBarracuda](https://github.com/keijiro/HandLandmarkBarracuda) and I referenced [his](https://github.com/keijiro) source code.(Thanks, [keijiro](https://github.com/keijiro)!).\n\n## Install\nPoseLandmarkBarracuda can be installed with npm or GitHub URL.\n\n### Install from npm (Recommend)\nPoseLandmarkBarracuda can be installed by adding following sections to the manifest file (`Packages/manifest.json`).\n\nTo the `scopedRegistries` section:\n```\n{\n  \"name\": \"creativeikep\",\n  \"url\": \"https://registry.npmjs.com\",\n  \"scopes\": [ \"jp.ikep\" ]\n}\n```\nTo the `dependencies` section:\n```\n\"jp.ikep.mediapipe.poselandmark\": \"1.1.1\"\n```\nFinally, the manifest file looks like below:\n```\n{\n    \"scopedRegistries\": [\n        {\n            \"name\": \"creativeikep\",\n            \"url\": \"https://registry.npmjs.com\",\n            \"scopes\": [ \"jp.ikep\" ]\n        }\n    ],\n    \"dependencies\": {\n        \"jp.ikep.mediapipe.poselandmark\": \"1.1.1\",\n        ...\n    }\n}\n```\n\n### Install from GitHub URL\nPoseLandmarkBarracuda can be installed by adding below URL on the Unity Package Manager's window\n```\nhttps://github.com/creativeIKEP/PoseLandmarkBarracuda.git?path=Packages/PoseLandmarkBarracuda#v1.1.1\n```\nor, adding below sentence to your manifest file(`Packages/manifest.json`) `dependencies` block.\n```\n\"jp.ikep.mediapipe.poselandmark\": \"https://github.com/creativeIKEP/PoseLandmarkBarracuda.git?path=Packages/PoseLandmarkBarracuda#v1.1.1\"\n```\n\n## Demo Image\n[This image](/Assets/Image/demoImage.jpg) for demo scene([\"SampleScene.unity\"](/Assets/Scenes/SampleScene.unity)) was downloaded from [here](https://unsplash.com/photos/72zsd_fnxYc).\n\n## ONNX Model\nThe ONNX model files have been converted for Unity Barracuda from Mediapipe's [\"pose_landmark_full.tflite\"](https://github.com/google/mediapipe/blob/v0.8.6/mediapipe/modules/pose_landmark/pose_landmark_full.tflite) and [\"pose_landmark_lite.tflite\"](https://github.com/google/mediapipe/blob/v0.8.6/mediapipe/modules/pose_landmark/pose_landmark_lite.tflite) file.\nThe ONNX model files were converted with [tflite2tensorflow](https://github.com/PINTO0309/tflite2tensorflow) and [tf2onnx](https://github.com/onnx/tensorflow-onnx).\n\n## Author\n[IKEP](https://ikep.jp)\n\n## LICENSE\nCopyright (c) 2021 IKEP\n\n[Apache-2.0](/LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcreativeikep%2Fposelandmarkbarracuda","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcreativeikep%2Fposelandmarkbarracuda","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcreativeikep%2Fposelandmarkbarracuda/lists"}