资源算法 py-c3d

py-c3d

2020-01-09 | |  36 |   0 |   0

py-c3d

This is a small library for reading and writing C3D binary files. C3D files are a standard format for recording 3-dimensional time sequence data, especially data recorded by a 3D motion tracking apparatus.

Installing

Install with pip:

pip install c3d

Or if you'd like to use the bleeding-edge version, just clone the github repository and build and install using the normal Python setup process:

git clone https://github.com/EmbodiedCognition/py-c3d
cd py-c3d
python setup.py install

Usage

Tools

This package includes a script for converting C3D motion data to CSV format (c3d2csv) and an OpenGL-based visualization tool for observing the motion described by a C3D file (c3d-viewer).

Library

To use the C3D library, just import the package and create a Reader orWriter depending on your intended usage

import c3dwith open('data.c3d', 'rb') as handle:
    reader = c3d.Reader(handle)    for i, (points, analog) in enumerate(reader.read_frames()):        print('Frame {}: {}'.format(i, points.round(2)))

You can also get and set metadata fields using the library; see the package documentation for more details.

Caveats

This library is minimally effective, in the sense that the only motion tracking system I have access to (for testing) is a Phasespace system. If you try out the library and find that it doesn't work with your motion tracking system, let me know. Pull requests are also welcome!

Also, if you're looking for more functionality than just reading and writing C3D files, there are a lot of better toolkits out there that support a lot more file formats and provide more functionality, perhaps at the cost of increased complexity. The biomechanical toolkit is a good package for analyzing motion data.


上一篇:c3dpo_nrsfm

下一篇:C3D-Tensorflow-slim

用户评价
全部评价

热门资源

  • Keras-ResNeXt

    Keras ResNeXt Implementation of ResNeXt models...

  • seetafaceJNI

    项目介绍 基于中科院seetaface2进行封装的JAVA...

  • spark-corenlp

    This package wraps Stanford CoreNLP annotators ...

  • capsnet-with-caps...

    CapsNet with capsule-wise convolution Project ...

  • inferno-boilerplate

    This is a very basic boilerplate example for pe...