11 lines
198 B
Bash
Executable file
11 lines
198 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
IMAGE1="${1:-$ROOT/test/test3f.jpg}"
|
|
IMAGE2="${2:-$ROOT/test/test3f.jpg}"
|
|
|
|
cd "$ROOT"
|
|
|
|
"$ROOT/bin/face_recognition" "$IMAGE1" "$IMAGE2"
|