[Feature] New utility for unassigned faces #10534
Replies: 5 comments
-
I would also really like to see this feature. |
Beta Was this translation helpful? Give feedback.
-
This confuses me so much cause I swear that was a feature that's now gone. Months ago, when I imported all my pictures, the people screen was full of recognized faces that I'd assign names to or hide. Now I added a picture and no new faces popped up in the people screen. I had to manually find that one picture, click on the detected face, create a new person and then name them. That's what led me to this post. How it works now makes no sense. |
Beta Was this translation helpful? Give feedback.
-
This may not be exactly the same (but #16863 was closed as a duplicate, so close enough), but I think an, "Is this also _____" option within the "/people/" page would be cool. The edit faces menu shows similar faces, but there's no easy way to say, "Yes, this is also ______". I wrote a quick script to do it: import { getFaces, getAllPeople, init } from "@immich/sdk";
import open from 'open';
import readline from 'readline';
const API_KEY = "";
const BASE_URL = "";
const PERSON_ID = "";
init({
baseUrl: BASE_URL,
apiKey: API_KEY,
});
function input(promptText = '') {
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
return new Promise(resolve => {
rl.question(promptText, answer => {
rl.close();
resolve(answer);
});
});
}
async function main() {
const people = await getAllPeople({
withHidden: false,
closestPersonId: PERSON_ID,
});
for (const person of people.people) {
// Open the person's page in the default browser
await open(`${BASE_URL}/people/${person.id}`);
await input(`Opened ${person.id}. Press Enter to continue...`);
}
}
main(); But a UI with a quick check/x would be better |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I have searched the existing feature requests to make sure this is not a duplicate request.
The feature
Dear immich Team,
My feature request refers to the following closed issue: #10277.
It would be highly beneficial if there were a way to filter photos containing unassigned faces, allowing users to review and assign these faces one by one if desired.
One possible solution is to add a new filter option specifically for photos with unassigned faces. Alternatively, considering the recent introduction of the Utilities section, this functionality could be integrated there, alongside the duplicate detection feature.
Thank you for considering this suggestion.
(I hope I did not miss that you already work on it or that somebody already requested this :) )
Platform
Beta Was this translation helpful? Give feedback.
All reactions