From 17d6aa60e2ce1dafff1e14dc983d31ab580fe09f Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Thu, 13 Apr 2023 20:10:59 +0200 Subject: [PATCH] Add comparison matrix --- TODO.md | 7 ++++++- src/URLs => URLs | 0 diff_table.txt | 19 +++++++++++++++++++ 3 files changed, 25 insertions(+), 1 deletion(-) rename src/URLs => URLs (100%) create mode 100644 diff_table.txt diff --git a/TODO.md b/TODO.md index 49ca1f3..defebab 100644 --- a/TODO.md +++ b/TODO.md @@ -4,7 +4,12 @@ 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 -o ~/Documents/other/AIMailys/boxes/$i -r 250; done ``` -* [ ] Eventuellement un tableau de comparaison de proximité identifiés sur différents visages +* [x] Eventuellement un tableau de comparaison de proximité identifiés sur différents visages + +```bash +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 embeddings (les fameux nombres dont je t'avais parlé) issu du dernier modèle diff --git a/src/URLs b/URLs similarity index 100% rename from src/URLs rename to URLs diff --git a/diff_table.txt b/diff_table.txt new file mode 100644 index 0000000..9b3b180 --- /dev/null +++ b/diff_table.txt @@ -0,0 +1,19 @@ ++-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+ +| | ChrisEvan1.jpg | ChrisEvan2.jpg | JenniferLawrence1.png | JenniferLawrence2.png | MargotRobbie1.jpg | MargotRobbie2.jpg | RobertDowney1.jpg | RobertDowney2.jpg | ++-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+ +| ChrisEvan1.jpg | 0 | 1.4469901 | 1.5851444 | 1.4725641 | 1.493774 | 1.5233572 | 1.5027672 | 1.5772052 | ++-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+ +| ChrisEvan2.jpg | 1.4469901 | 0 | 1.7558935 | 1.7296197 | 1.7195596 | 1.6490623 | 1.5382934 | 1.5368507 | ++-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+ +| JenniferLawrence1.png | 1.5851444 | 1.7558935 | 0 | 0.7988865 | 1.3284732 | 1.4284842 | 1.5345646 | 1.5157186 | ++-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+ +| JenniferLawrence2.png | 1.4725641 | 1.7296197 | 0.7988865 | 0 | 1.3276035 | 1.4731331 | 1.6620125 | 1.5803103 | ++-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+ +| MargotRobbie1.jpg | 1.493774 | 1.7195596 | 1.3284732 | 1.3276035 | 0 | 0.973696 | 1.4589473 | 1.5014138 | ++-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+ +| MargotRobbie2.jpg | 1.5233572 | 1.6490623 | 1.4284842 | 1.4731331 | 0.973696 | 0 | 1.6180637 | 1.6254852 | ++-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+ +| RobertDowney1.jpg | 1.5027672 | 1.5382934 | 1.5345646 | 1.6620125 | 1.4589473 | 1.6180637 | 0 | 0.7831072 | ++-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+ +| RobertDowney2.jpg | 1.5772052 | 1.5368507 | 1.5157186 | 1.5803103 | 1.5014138 | 1.6254852 | 0.7831072 | 0 | ++-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+