diff options
author | Jamie Bullock <jamie@jamiebullock.com> | 2014-01-15 19:16:19 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@jamiebullock.com> | 2014-01-15 19:16:19 +0000 |
commit | 78e81c3fce3427c894daf2a2ca9712b37a8a6cbf (patch) | |
tree | 4aad5ae73ecd7ed2eaf844624df304078f0b5a90 /README.md | |
parent | 5877e142594cee960b68ed6229d72920880e0c46 (diff) | |
download | LibXtract-78e81c3fce3427c894daf2a2ca9712b37a8a6cbf.tar.gz LibXtract-78e81c3fce3427c894daf2a2ca9712b37a8a6cbf.tar.bz2 LibXtract-78e81c3fce3427c894daf2a2ca9712b37a8a6cbf.zip |
Add build status widget to README
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,5 +1,7 @@ # LibXtract +[](https://travis-ci.org/jamiebullock/LibXtract) + LibXtract is a simple, portable, lightweight library of audio feature extraction functions. The purpose of the library is to provide a relatively exhaustive set of feature extraction primatives that are designed to be 'cascaded' to create a extraction hierarchies. For example, 'variance', 'average deviation', 'skewness' and 'kurtosis', all require the 'mean' of the input vector to be precomputed. However, rather than compute the 'mean' 'inside' each function, it is expected that the 'mean' will be passed in as an argument. This means that if the user wishes to use all of these features, the mean is calculated only once, and then passed to any functions that require it. |