GithubHelp home page GithubHelp logo

calciferzh / amcparser Goto Github PK

View Code? Open in Web Editor NEW
132.0 5.0 27.0 497 KB

Parse and visualize asf/amc files from CMU MoCap dataset.

License: MIT License

Python 100.00%
mocap animation pose skeleton motion body asf amc

amcparser's Introduction

Greetings :)

Iโ€™m currently a PhD student at ETH Zurich. I received my bachelor's and master's degree at Tsinghua University in 2019 and 2022.

In my daily life, I enjoy cycling and running.

Please check my homepage for more details.

Yuxiao's GitHub stats

amcparser's People

Contributors

acbellini avatar calciferzh avatar cheapmeow avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

amcparser's Issues

report.

Thank you for opening those code.
But
Small bug is In 3DViewer.py on line 195 and 204.

for j in joints.values():
should be changed to
for j in self.joints.values():

normalizing joint length

First of all, I would like to thank you for this work. I am very impressed, this is extremely helpful and I am planning in using it for my master thesis. In order to do that on the other hand I would need to perform joint normalization, so joints would be the same length in different animations?
Can you provide any idea of how can I change that?

Plot AMC/ASF anc C3D data

Hi! I am tying to plot skeleton and maker data. I know that c3d data are in mm, which is the units of AMC data? When you plot you fix the axis limits, I can't understand the units of the coordinate system.

Thanks

wrong in ',' and '.' pressed

 if pressed[pygame.K_COMMA]:
      self.frame -= 1
      if self.frame >= len(self.motions):
        self.frame = 0
 if pressed[pygame.K_PERIOD]:
      self.frame += 1
      if self.frame < 0:
        self.frame = len(self.motions) - 1

should be

 if pressed[pygame.K_COMMA]:
     self.frame -= 1
     if self.frame < 0:
        self.frame = len(self.motions) - 1
 if pressed[pygame.K_PERIOD]:
      self.frame += 1
      if self.frame >= len(self.motions):
        self.frame = 0

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.