https://github.com/lancelet/mocaputils
Utilities for motion capture.
https://github.com/lancelet/mocaputils
Last synced: 3 months ago
JSON representation
Utilities for motion capture.
- Host: GitHub
- URL: https://github.com/lancelet/mocaputils
- Owner: lancelet
- Created: 2011-05-19T21:19:18.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2014-01-18T06:39:55.000Z (over 11 years ago)
- Last Synced: 2025-01-13T21:28:02.481Z (4 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
$ sbthttps://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.