Skip to content

Nextcloud Face Recognition v0.9.40

Compare
Choose a tag to compare
@matiasdelellis matiasdelellis released this 24 Apr 14:46
· 42 commits to master since this release
d5478c5

[0.9.40] - 2024-04-24

  • Enable PHP 8.3 and NC28
  • Add special modes to background_job command that allows images to be analyzed in multiple processes to improve speed.
  • Add special mode to sync-album command to generate combined albums with multiple people. PR #709

How to use that:

#!/bin/bash
echo "Synchronizing user files..."
php occ face:background_job -u user --sync-mode
echo "Done"

echo "Analyzing user files..."
for i in {1..4}; do
    php occ face:background_job -u user --analyze-mode &
    pids[${i}]=$!
done

for pid in ${pids[*]}; do
    wait $pid
done
echo "Done"

echo "Calculating user face clusters..."
php occ face:background_job -u user --cluster-mode
echo "Done"