Docker
Docker install guide
NOTE for macOS users: camera input does not work with Docker on macOS. File sources only.
You can run wasmVision using Docker.
Pull the current development version:
docker pull ghcr.io/wasmvision/wasmvision:main
Verify it is installed like this:
docker run ghcr.io/wasmvision/wasmvision:main version
Now you can run a test to capture video using your webcam, blur it using a WebAssembly processor, and then stream the output to port 8080 on your local machine:
docker run --privileged --network=host ghcr.io/wasmvision/wasmvision:main run -p /processors/blur.wasm
Point your browser to http://localhost:8080
and you should see the output.
Next steps
Now that you have installed wasmVision take a look at Next Steps for what to do next.