LibHand Examples

A complete C++ example that renders a hand

A complete CMake build file for the example above

CMAKE_MINIMUM_REQUIRED(VERSION 2.8.6)

FIND_PACKAGE(LibHand REQUIRED
  PATHS "/path/to/hand_cpp/dist"
  NO_MODULE
  NO_DEFAULT_PATH)

include_directories(${LibHand_INCLUDE_DIRS})

ADD_EXECUTABLE(example example.cc)
TARGET_LINK_LIBRARIES(example ${LibHand_LIBRARIES})

A complete MATLAB example that renders an animation between two poses