https://github.com/lancelet/skintwitch
Marker-based analysis of skin twitching in horses
https://github.com/lancelet/skintwitch
Last synced: 3 months ago
JSON representation
Marker-based analysis of skin twitching in horses
- Host: GitHub
- URL: https://github.com/lancelet/skintwitch
- Owner: lancelet
- Created: 2011-05-24T22:05:49.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2014-01-19T02:17:34.000Z (over 11 years ago)
- Last Synced: 2025-01-13T21:27:18.391Z (4 months ago)
- Language: Scala
- Homepage:
- Size: 594 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.asciidoc
Awesome Lists containing this project
README
= SkinTwitch - Marker Based Analysis of Skin Motion in Horses =
== Introduction ==
This is the cutaneous trunci skin twitch project.
== Current Status ==
Completed:
- Power spectral analysis of initial trials.
- Compute skin deformation gradient tensor from a marker grid.
- Compute Biot & Green-Lagrangian strain from a marker grid.
- Transformation of the stimulation device (poker), to find the position
of its end point.
- Computation of distance from poke point to marker grid mesh.
- Final summary of results.== Installation ==
Check out the project from GitHub (this command uses the Read-Only
repository):$ git clone git://github.com/lancelet/skintwitch.git
This will create a new directory called `skintwitch`. Next, use
https://github.com/harrah/xsbt[sbt/xsbt] to compile the project:$ cd skintwitch
$ sbthttps://github.com/harrah/xsbt[sbt/xsbt] will launch, and collect
everything it needs for the project. Next, you must fetch the native library
dependencies for VTK. This is done for either Mac OS X or Linux using one of
the commands:> vtkNativeOSX
> vtkNativeLinuxThese commands download compressed files containing the platform-specific
native dependencies, and then run processes to extract them into the `./lib`
directory. This process for fetching the native dependencies may not be ideal
and will be revised if better options become available. To run under Linux,
it may also be necessary to set the `LD_LIBRARY_PATH` environment variable
to the appropriate `./lib` subdirectory outside of sbt.Within `sbt`, you can then run:
> test
This will run the packaged unit tests for the project.