mediapipe-rs/README.md

64 lines
1.7 KiB
Markdown
Raw Normal View History

2022-03-01 13:04:01 +01:00
# ux-mediapipe
2022-05-12 08:46:54 +02:00
Rust and mediapipe.
2022-06-11 21:53:07 +02:00
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 custom mediapipe C++ library.
2022-05-12 08:46:54 +02:00
## requirements
2022-06-11 21:53:07 +02:00
- [bazel](https://bazel.build/install)
2022-05-12 08:46:54 +02:00
## setup
Clone the modified Mediapipe repo:
```shell
git clone https://github.com/julesyoungberg/mediapipe.git
cd mediapipe
```
Build & install the mediagraph library.
### mac os
```shell
bazel build --define MEDIAPIPE_DISABLE_GPU=1 mediapipe:libmediagraph.dylib
sudo cp bazel-bin/mediapipe/libmediagraph.dylib /usr/local/lib/libmediagraph.dylib
2022-06-07 07:06:03 +02:00
cp mediapipe/mediagraph.h /usr/local/include/mediagraph.h
2022-05-12 08:46:54 +02:00
```
### linux (untested)
```shell
bazel build --define MEDIAPIPE_DISABLE_GPU=1 mediapipe:mediagraph
cp bazel-bin/mediapipe/libmediagraph.so /usr/local/lib/libmediagraph.so
2022-06-07 07:06:03 +02:00
cp mediapipe/mediagraph.h /usr/local/include/mediagraph.h
2022-05-12 08:46:54 +02:00
```
2022-06-11 21:35:38 +02:00
## examples
Examples are located in the `./examples` directory. Run them with
```shell
cargo run --release --example hello
```
2022-05-12 08:54:16 +02:00
## usage
Add the following to your dependencies list in `Cargo.toml`:
```toml
2022-06-07 07:38:23 +02:00
ux-mediapipe = { git = "https://github.com/julesyoungberg/ux-mediapipe" }
2022-05-12 08:54:16 +02:00
```
Mediapipe relies on tflite files which must be available at `./mediapipe/modules/`. The easiest way to do this is
```shell
mkdir mediapipe
cp -R ../mediapipe/mediapipe/modules ./mediapipe/modules
```
The path to mediapipe may be different depending on where you've cloned it.
Also this copies all of mediapipe's tflite files rather than only the few needed.