This guide takes you from clone to a working local setup.
- Flutter SDK and Dart in
PATH - Rust toolchain (
rustup,cargo) - Docker (optional but recommended for reproducible setup)
- GStreamer runtime and tools (
gst-launch-1.0)
flutter --version
dart --version
cargo --version
gst-launch-1.0 --versiongit clone --recurse-submodules --branch develop git@github.com:Kataglyphis/Kataglyphis-Inference-Engine.git
cd Kataglyphis-Inference-EngineIf you cloned without submodules:
git submodule update --init --recursiveList available camera devices:
for dev in /dev/video*; do
echo "Testing $dev"
gst-launch-1.0 -v v4l2src device=$dev ! fakesink
doneInspect resolutions/framerates:
sudo apt update
sudo apt install -y v4l-utils
v4l2-ctl --device=/dev/video0 --list-formats-extflutter run -d web-server --profile --web-port 8080 --web-hostname 0.0.0.0Open http://127.0.0.1:8080 in your browser.
bash scripts/linux/generate-docs.shServe generated docs locally:
dart pub global activate dhttpd
export PATH="$PATH:$HOME/.pub-cache/bin"
dhttpd --path doc/api --host 127.0.0.1 --port 8080usbipd list
usbipd attach --wsl --busid 1-1.2
lsusb- Continue with Platforms for target-specific builds.
- Continue with Camera Streaming for WebRTC pipelines.