https://github.com/lancelet/mocaputils
Utilities for motion capture.
https://github.com/lancelet/mocaputils
Last synced: about 1 month ago
JSON representation
Utilities for motion capture.
- Host: GitHub
- URL: https://github.com/lancelet/mocaputils
- Owner: lancelet
- Created: 2011-05-19T21:19:18.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2014-01-18T06:39:55.000Z (almost 12 years ago)
- Last Synced: 2025-03-03T10:42:36.073Z (9 months ago)
- Language: Scala
- Homepage:
- Size: 328 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.asciidoc
Awesome Lists containing this project
README
= MocapUtils - Motion Capture Utilities for Scala =
== Introduction ==
MocapUtils provides some simple functionality for working with motion capture
files.
== Current Functionality ==
MocapUtils currently implements the following:
- Reading Motion Analysis `*.trc` files.
- Reading Motion Analysis `*.forces` files.
- Linear gap filling for marker data.
- Low-pass filtering of marker coordinate data using a second-order
Butterworth filter.
- Set of plotting utilities for making JFreeChart easier to use from Scala.
== Installation ==
Check out the project from GitHub (this command uses the Read-Only
repository):
$ git clone git://github.com/lancelet/mocaputils.git
This will create a new directory called `mocaputils`. Next, use
https://github.com/harrah/xsbt[sbt/xsbt] to compile the project:
$ cd mocaputils
$ sbt
https://github.com/harrah/xsbt[sbt/xsbt] will launch, and collect
everything it needs for the project. Within `sbt`, you can then run:
> test
This will run the packaged unit tests for the project.