Add faces location

This commit is contained in:
Pierre HUBERT 2023-04-13 20:15:53 +02:00
parent 17d6aa60e2
commit 18a2aada31
2 changed files with 17 additions and 2 deletions

13
TODO.md
View File

@ -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

6
faces_location.txt Normal file
View File

@ -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