recognition of faces for the web
Puzzle pieces ask us to recognise from reference:
graph LR;
A(((10001/10001 pieces left))) --> B([Blue Puzzle Piece])
B -.-> C(Sky?)
B -.-> D(Sea?)
B -.-> E(Blue petticoat?)
graph LR;
A(((11 pieces left))) --> B([Green Puzzle Piece])
B --> E(Tree on Left)
A ==> C([Dark-Blue Puzzle Piece])
C --> D(Sea)
A ==> F([Light-Blue Puzzle Piece])
F --> G(Sky)
To reduce the Δtime it takes to build up references, machine learning libraries can be used.
As PJ Vogt's Search Engine podcast discusses, this is possible for faces.
Using face-recognition to build up the reference list in a database, the lineup browser extension can allow for all faces found while browsing to later be checked.
This software uncouples the browsing and the reference list.
Multiple people, on different browsers, can share the same database of references.
graph LR;
A(((face_db))) <--> B([face])
B <--> E(firefox)
A <--> F([face])
F <--> G{{librewolf}}
graph BT;
B(firefox) <--> A[(face_db)]
C{{librewolf}} <--> A
D(firefox) <--> A
E(firefox) <--> A
F{{librewolf}} <--> A
redacted due to EU AI Act
redacted due to EU AI Act
- launch elasticsearch instance, wait until the output about 'health'
- launch $repo/lineup_svr/app.py using
python3 app.py
- launch firefox, go to about:debugging
- select
This Browser
- select
load temporary extension
and choose $repo/lineup_ext/manifest.json
This software is available under the MIT License.
redacted due to EU AI Act