3d 舞蹈同步

news/2024/12/14 23:39:01/

目录

看起来很强大

unity驱动bvh跳舞:

脚飘动问题:

bvh和播放关节对应关系 zxy格式

bvh和播放关节对应关系 zyx的对应关系:

bvh播放器:


看起来很强大

GitHub - FORTH-ModelBasedTracker/MocapNET: We present MocapNET, a real-time method that estimates the 3D human pose directly in the popular Bio Vision Hierarchy (BVH) format, given estimations of the 2D body joints originating from monocular color images. Our contributions include: (a) A novel and compact 2D pose NSRM representation. (b) A human body orientation classifier and an ensemble of orientation-tuned neural networks that regress the 3D human pose by also allowing for the decomposition of the body to an upper and lower kinematic hierarchy. This permits the recovery of the human pose even in the case of significant occlusions. (c) An efficient Inverse Kinematics solver that refines the neural-network-based solution providing 3D human pose estimations that are consistent with the limb sizes of a target person (if known). All the above yield a 33% accuracy improvement on the Human 3.6 Million (H3.6M) dataset compared to the baseline method (MocapNET) while maintaining real-time performance

unity驱动bvh跳舞:

本机:My project (1)

脚飘动问题:

这句代码注释,脚就会飘动

 anim.GetBoneTransform(HumanBodyBones.Hips).position = bvhPos[bp.root.name]*scaleRatio;

bvh和播放关节对应关系 zxy格式

Hips Hips
LeftUpLeg LeftUpperLeg
LeftLeg LeftLowerLeg
LeftFoot LeftFoot
RightUpLeg RightUpperLeg
RightLeg RightLowerLeg
RightFoot RightFoot
Spine Spine
Spine1 Chest
Neck Neck
LeftShoulder LeftShoulder
LeftArm LeftUpperArm
LeftForeArm LeftLowerArm
LeftHand LeftHand
RightShoulder RightShoulder
RightArm RightUpperArm
RightForeArm RightLowerArm
RightHand RightHand

bvh和播放关节对应关系 zyx的对应关系:

Hips Hips
LeftUpLeg RightUpperLeg
LeftLeg RightLowerLeg
LeftFoot RightFoot
RightUpLeg LeftUpperLeg
RightLeg LeftLowerLeg
RightFoot LeftFoot
Spine Spine
Spine1 Chest
Neck Neck
LeftShoulder RightShoulder
LeftArm RightUpperArm
LeftForeArm RightLowerArm
LeftHand RightHand
RightShoulder LeftShoulder
RightArm LeftUpperArm
RightForeArm LeftLowerArm
RightHand LeftHand

bvh播放器:

GitHub - glastonbridge/BVHPlayer: This is a hacky Unity component I wrote for animating BVH files exported from MocapNET


http://www.ppmy.cn/news/1364663.html

相关文章

再见,Visual Basic——曾经风靡一时的编程语言

2020年3月,微软团队宣布了对Visual Basic(VB)的“终审判决”:不再进行开发或增加新功能。这意味着曾经风光无限的VB正式退出了历史舞台。 VB是微软推出的首款可视化编程软件,自1991年问世以来,便受到了广大…

小白水平理解面试经典题目LeetCode 655. Print Binary Tree【Tree】

655 打印二叉树 一、小白翻译 给定二叉树的 root ,构造一个 0 索引的 m x n 字符串矩阵 res 来表示树的格式化布局。格式化布局矩阵应使用以下规则构建: 树的高度为 height ,行数 m 应等于 height 1 。 列数 n 应等于​​xheight1​​ - …

AI大模型-流式处理 (以百度接口为例)

No bb , show code 效果 后端代码 from flask import Flask, request, Response import json import requests from flask_cors import CORSapp Flask(__name__) CORS(app) # Enable CORS for all routesdef get_access_token(ak, sk):auth_url "https://aip.baidubce…

Python文件和异常(一)

目录 一、从文件中读取数据 (一)读取整个文件 (二)文件路径 (三)逐行读取 (四)创建一个包含文件各行内容的列表 (五)使用文件的内容 (六&a…

Eclipse是如何创建web project项目的?

前面几篇描述先后描述了tomcat的目录结构和访问机制,以及Eclipse的项目类型和怎么调用jar包,还有java的main函数等,这些是一些基础问题,基础高清出来才更容易搞清楚后面要说的东西,也就是需求带动学习,后面…

学习笔记-李沐动手学深度学习(七)(19-21,卷积层、填充padding、步幅stride、多输入多输出通道)

总结 19-卷积层 【补充】看评论区建议的卷积动画视频 数学中的卷积 【链接】https://www.bilibili.com/video/BV1VV411478E/?fromsearch&seid1725700777641154181&vd_sourcee81e116c4ffe5e79d4bc44738263eda4 【可判断是否为卷积的典型标志】两个函数中自变量相加…

python笔记_注释和代码规范

注释 是什么 注释是用于注解,说明程序的文字 为什么 1,提高可读性 2,注释后的文字不会被执行,所以编程时可以用来梳理思绪 分类 单行注释##print("吃了吗")多行注释三个单引号或"""三个双引号"…

学成在线_课程计划查询_前端页面无法跳转

问题描述 在进行课程计划查询的接口开发时通过了http-client测试但点开课程修改界面后点击保存并进行下一步时无法跳转到修改课程计划查询的页面。 问题原因 课程信息修改的Controller层没有实现 QAQ(可能是老师在讲这一块的时候没有提这一点(我也记…