live sonar feed, and incremental action feed

This commit is contained in:
kevin
2026-04-16 14:53:01 +08:00
parent cc6cef0f73
commit 34ecc33ee5
28 changed files with 1555 additions and 1227 deletions

View File

@@ -4,16 +4,11 @@
# ./start_recording.sh
# ./start_recording.sh --remote
# ./start_recording.sh --segment-sec 300
# 依赖fish_api 已 pip install -e .;直连相机时需 pyzed。
# 依赖fish_api 已 python3 -m pip install -e .;直连相机时需 pyzed。
set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$ROOT/fish_api"
if command -v uv >/dev/null 2>&1; then
PY=(uv run python)
else
PY=(python3)
fi
exec "${PY[@]}" -m app.zed_record_cli start "$@"
PY="${PYTHON:-python3.8}"
exec "$PY" -m app.zed_record_cli start "$@"