Metadata-Version: 2.1
Name: pyacclaim
Version: 0.0.1
Summary: A generic Acclaim motion capture data (AMC/ASF) parser.
Project-URL: Homepage, https://github.com/stephenbaek/pyacclaim
Project-URL: Bug Tracker, https://github.com/stephenbaek/pyacclaim/issues
Author-email: Stephen Baek <github@stephenbaek.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# PyAcclaim - ASF/AMC motion data parser without hardcoding
Acclaim Motion Capture (AMC) data is a data format for storing motion capture data. While widely adopted by various motion capture systems including the Vicon motion capture systems, it appears that the existing AMC data parsers in Python involve some level of hardcoding (e.g. assumption on the order of keywords or sections). PyAcclaim aims to solve this issue through a more generic implementation, free of assumptions, such that broader variants of AMC file formats can be read without a problem.

## Installation
```bash
pip install pyacclaim
```
Additionally, if you wish to use the viewer, please install `open3d`:
```bash
pip install open3d
```

## Usage
```python
from pyacclaim import loadASF, loadAMC

asf = loadASF('test.asf')
amc = loadAMC(asf, 'test.amc')
```
