r-zig / face-recognition-trainer

Tool for training and evaluating face recognition systems. Scans folders, calls APIs, and measures model accuracy.
Apache License 2.0
0 stars 0 forks source link

add rename option to recognition #9

Open r-zig opened 3 days ago

r-zig commented 3 days ago

Add the option to auto rename the file based on the response from the recognition:

  1. move and rename to target based on OUTPUT_DIR
  2. copy and rename to target based on OUTPUT_DIR
  3. strategy: in case of many recognition results (subjects) 3.1. option to take the one with the maximum similarity 3.2 option to multiply the image based on the most N subjects, or > N similarity
r-zig commented 3 days ago

For that, first we want to change the entire post-file processing to happen during the process, and not in the end of the process. We want to send notifications about the various processing results via channels, and let subscriber to do the job. Currently we send accumulated results, we should change it to partial per processing results, and accumulate them in other place.