mediapipe-rs/README.md
Jules Youngberg 1765491168 update readme
2022-06-11 12:35:38 -07:00

1.4 KiB

ux-mediapipe

Rust and mediapipe.

Mediapipe is a framework for building AI-powered computer vision and augmented reality applications. It provides high level libraries exposing some of its solutions for common problems. This package makes some of these solutions available in Rust. In order to use it we must build a C++ library that provides an interface to the mediapipe 'engine'.

Figuring all this out has been a challenge. I have made these forks and instructions to help me in the future.

requirements

  • bazel
  • clang

setup

Clone the modified Mediapipe repo:

git clone https://github.com/julesyoungberg/mediapipe.git
cd mediapipe

Build & install the mediagraph library.

mac os

bazel build --define MEDIAPIPE_DISABLE_GPU=1 mediapipe:libmediagraph.dylib
sudo cp bazel-bin/mediapipe/libmediagraph.dylib /usr/local/lib/libmediagraph.dylib
cp mediapipe/mediagraph.h /usr/local/include/mediagraph.h

linux (untested)

bazel build --define MEDIAPIPE_DISABLE_GPU=1 mediapipe:mediagraph
cp bazel-bin/mediapipe/libmediagraph.so /usr/local/lib/libmediagraph.so
cp mediapipe/mediagraph.h /usr/local/include/mediagraph.h

examples

Examples are located in the ./examples directory. Run them with

cargo run --release --example hello

usage

Add the following to your dependencies list in Cargo.toml:

ux-mediapipe = { git = "https://github.com/julesyoungberg/ux-mediapipe" }