From a10bc47d75fe9d16315f843c67cd29e38551bf27 Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Sat, 31 Dec 2022 16:28:13 -0800 Subject: [PATCH] Added server/README to document image flow Signed-off-by: James Ketrenos --- server/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 server/README.md diff --git a/server/README.md b/server/README.md new file mode 100644 index 0000000..977b9d3 --- /dev/null +++ b/server/README.md @@ -0,0 +1,9 @@ +# Face recognition + +1. Check if FILE has been scanned. If so, skip. +2. DETECT faces in FILE. +3. EXTRACT rotated / normalized FACE into FACE-DATA/ID + Q. How to map FILE::FACAE to FACE-DATA/ID +4. CLUSTER / RECOGNIZE all FACE-DATA/ID + Q. Does this require N:(N-1) comparisons where N is number of total + FACES, or can it be N:C where C is the number of "SAME" cluster?