HTML demos for face, hand, gesture, and posture tracking using MediaPipe. Includes Python CLI tools for processing video files. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
354 B
Bash
Executable File
15 lines
354 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# AlERT: source this script, don't run it directly.
|
|
# source source_activate_venv.sh
|
|
|
|
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
|
|
echo "This script must be sourced, not run directly."
|
|
echo "source source_activate_venv.sh"
|
|
exit 1
|
|
fi
|
|
|
|
# rest of your script here
|
|
echo "Script is being sourced. Continuing..."
|
|
source ./.venv/bin/activate
|