Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A bug in interface.py #2

Closed
YifengMa9 opened this issue Mar 7, 2022 · 4 comments
Closed

A bug in interface.py #2

YifengMa9 opened this issue Mar 7, 2022 · 4 comments

Comments

@YifengMa9
Copy link

YifengMa9 commented Mar 7, 2022

Line 74. there are extra space in keys.
pose = [pos_data[" pose_Rx"][i], pos_data[" pose_Ry"][i], pos_data[" pose_Rz"][i],pos_data[" pose_Tx"][i], pos_data[" pose_Ty"][i], pos_data[" pose_Tz"][i]]
should be
pose = [pos_data["pose_Rx"][i], pos_data["pose_Ry"][i], pos_data["pose_Rz"][i],pos_data["pose_Tx"][i], pos_data["pose_Ty"][i], pos_data["pose_Tz"][i]]

Thanks for your remarkable work. The performance is amazing.

@YifengMa9 YifengMa9 changed the title no config.py file A bug in interface.py Mar 7, 2022
@FuxiVirtualHuman
Copy link
Owner

R

This is caused by the different versions of Openface and the different paltforms.

@yaleimeng
Copy link

windows版本的csv,列名前面有空格;Linux版本的csv文件,列名不包含空格。
项目代码是默认按前面带空格的形式,修改一下就可以了。

@YifengMa9
Copy link
Author

Thanks

@rlgnswk
Copy link

rlgnswk commented Nov 1, 2023

Thanks for your recording!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants