This folder provides a Linux-only example of using the Manus SDK for hand tracking within the Isaac Teleop framework.
- Core Library (
manus_plugin_core): Interfaces with the Manus SDK (libIsaacTeleopPluginsManus.so). - Plugin Executable (
manus_hand_plugin): The main plugin executable that integrates with the Teleop system. - CLI Tool (
manus_hand_tracker_printer): A standalone tool to print tracked joint data for verification.
- Linux (x86_64, tested on Ubuntu 22.04)
- Manus SDK for Linux x86_64
The Manus SDK must be downloaded separately due to licensing.
- Obtain a Manus account and credentials.
- Download the MANUS Core SDK from Manus Downloads.
- Extract and place the
ManusSDKfolder insidesrc/plugins/manus/, or set theMANUS_SDK_ROOTenvironment variable to your installation path.
Expected layout:
src/plugins/manus/
app/
main.cpp
core/
manus_hand_tracking_plugin.cpp
inc/
core/
manus_hand_tracking_plugin.hpp
tools/
manus_hand_tracker_printer.cpp
ManusSDK/ <-- Placed here
include/
lib/
This plugin is built as part of the Isaac Teleop project. It will be automatically included if the Manus SDK is found.
Run the project build from the repository root:
cmake -S . -B build
cmake --build build -jIf the SDK is not found, the build will skip the Manus plugin with a warning.
Ensure Manus Core is running and gloves are connected. Run the printer tool to verify data reception:
./build/bin/manus_hand_tracker_printerThe plugin is installed to the install directory.
./install/plugins/manus/manus_hand_plugin- Manus SDK not found at build time: Ensure
ManusSDKis insrc/plugins/manus/orMANUS_SDK_ROOTis set correctly. - Manus SDK not found at runtime: The build configures RPATH to find the SDK libraries. If you moved the SDK or built without RPATH support, you may need to set
LD_LIBRARY_PATH. - No data available: Ensure Manus Core is running and gloves are properly connected and calibrated.
Source files are under their stated licenses. The Manus SDK is proprietary to Manus and is subject to its own license; it is not redistributed by this project.