From 18a2aada31b4e2cebfe23eae3a2c9577fbb703dc Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Thu, 13 Apr 2023 20:15:53 +0200 Subject: [PATCH] Add faces location --- TODO.md | 13 +++++++++++-- faces_location.txt | 6 ++++++ 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 faces_location.txt diff --git a/TODO.md b/TODO.md index defebab..4b40c8b 100644 --- a/TODO.md +++ b/TODO.md @@ -10,8 +10,17 @@ for i in ChrisEvan1.jpg ChrisEvan2.jpg MargotRobbie1.jpg MargotRobbie2.jpg Rober cargo run --all-features --release --example face_compare_multiple -- --face-detection-model ../models/face_detection_model.pb --face-embeddings-model ../models/face_embeddings_model_v2.pb --images-dir ~/Documents/other/AIMailys/src > ~/Documents/other/AIMailys/diff_table.txt ``` -* [ ] Les données produits par les deux modèles : - * [ ] La localisation des visages +* [-] Les données produites par les deux modèles : + * [x] La localisation des visages + +```bash +for i in ChrisEvan1.jpg ChrisEvan2.jpg MargotRobbie1.jpg MargotRobbie2.jpg RobertDowney1.jpg RobertDowney2.jpg ; do cargo run --all-features --release --example face_detection -- --face-detection-model ../models/face_detection_model. +pb -s ~/Documents/other/AIMailys/src/$i 2> /dev/null | grep From | sed "s/^/$i: /g"; done +``` + + + + * [ ] Les embeddings (les fameux nombres dont je t'avais parlé) issu du dernier modèle * [ ] Des informations techniques un peu plus détaillées sur mes modèles diff --git a/faces_location.txt b/faces_location.txt new file mode 100644 index 0000000..609e0d9 --- /dev/null +++ b/faces_location.txt @@ -0,0 +1,6 @@ +ChrisEvan1.jpg: From 490x218 to 1128x1008 +ChrisEvan2.jpg: From 541x1006 to 1844x2347 +MargotRobbie1.jpg: From 527x181 to 1014x715 +MargotRobbie2.jpg: From 697x359 to 1680x1358 +RobertDowney1.jpg: From 384x159 to 845x736 +RobertDowney2.jpg: From 360x119 to 553x350 \ No newline at end of file