Skip to content

jonnyOntheroad/acl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CLA assistant

Animation Compression Library

Goals

This library has two primary goals:

  • Implement state of the art and production ready animation compression algorithms
  • Serve as a benchmark to compare various techniques against one another

It is very common for most game engines or animation libraries to implement their own animation compression but the problem is so narrow and focused in scope, that it makes sense for the industry to converge on a single implementation.

Academic papers on the subject often will not compare techniques using the same error metric or raw size function which can skew the results or make them very hard to evaluate. They might also compare against techniques which are not state of the art or even used in production. This library aims to implement as many techniques as possible, side by side, in order to compare them fairly.

Philosophy

Much thought was put into designing the library for it to be as flexible and powerful as possible. To this end, the following decisions were made:

Supported platforms

The library aims to support the most common platforms for the most common use cases. There is very little platform specific code as such it should work nearly everywhere.

The math library is not yet fully optimized for every platform. The overwhelming majority of the math heavy code executes when compressing, not decompressing. Decompression is typically very simple and light in order to be fast. Very little math is involved beyond interpolating values.

Compression

  • Windows

Decompression

  • Windows
  • Android

Algorithms supported

  • Uniformly sampled
  • Linear key reduction (TODO)
  • Spline key reduction (TODO)
  • Wavelets (TODO)

Getting up and running

Windows

  1. Install Visual Studio 2015
  2. Install CMake 3.9 or higher
  3. Install Python 3.3 (version 3.3 is required for the FBX SDK by some scripts)
  4. Generate the IDE solution with: python make.py
    The solution is generated under ./build
    Note that if you do not have CMake in your PATH, you should define the ACL_CMAKE_HOME environment variable to something like C:\Program Files\CMake.
  5. Build the IDE solution with: python make.py -build

Reference material

In order to test the algorithm implementations with real world data, we took the Carnegie-Mellon University motion capture database. It contains over 2500 animation clips. This is the data all graphs and charts shown will be based on. Data available upon request, it is far too large for GitHub.

Performance metrics

MIT License

Copyright (c) 2017 Nicholas Frechette & Animation Compression Library contributors

About

Animation Compression Library

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 90.2%
  • Python 7.2%
  • CMake 2.3%
  • Other 0.3%