SUMMARY *** NOTE: If you are reporting a crash, please try to attach a backtrace with debug symbols. See https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports *** STEPS TO REPRODUCE 1. Add new collection of images that have face data stored in xmp metadata. xmp metadata was created by another program. 2. digiKam recognizes xmp face data and creates people tags 3. Under People -> Workflow Run "Detect faces" followed by "Recognize faces" OBSERVED RESULT digiKam does detect new faces that the former program missed or from fresh images without face metadata. digiKam correctly does not duplicate any faces detected by previous program and stored in xmp. digiKam displays newly detected faces in the "Unknown" category. No newly detected faces are in the "Unconfirmed" category. If I assign a People tag to a few of the same newly detected faces, then digiKam will start making recommendations to the "Unconfirmed" category. BUT, recommendations are only made for People tags assigned inside digiKam and have an accuracy of less than 10%. Recommendations are not made for any Person tag that was created when an image with xmp face metadata. It appears that digiKam isn't able to correctly utilize faces tagged by another program when performing the "Recognize faces" procedure. To confirm this suspicion, I found a person who had never been tagged before. I assigned a name to this person on ~10 faces. digiKam started making recommendations to the "Unconfirmed" category for this person with better than 95% accuracy. EXPECTED RESULT I just reread the documentation about face recognition and saw the Note: "Face recognition only works well with faces that have been automatically detected by digiKam, not with manually drawn face rectangles or faces from other programs." Based on this I'm guessing that face recognition is dependent upon the bounding box and each method defines the bounding box uniquely. I don't recall ever seeing an option to ignore face metadata when adding a new collection. What is the proper way use face recognition in digikam with images tagged by other programs? It would be helpful if the documentation contained a workaround in addition to the cited note. Is there a simple way to delete existing face tag data from a files xmp metadata and then redo the database? Does the same problem exist if originally a person used the regular "Detect faces" method and then after more images have been added to the collection, the person enabled the "Use Yolo v3 detection model" option for face detection? SOFTWARE/OS VERSIONS Windows: 11 ver. 2009 macOS: Linux/KDE Plasma: (available in About System) KDE Plasma Version: KDE Frameworks Version: Qt Version: ADDITIONAL INFORMATION
When importing images with face regions, no face matrices are created for face recognition, for performance reasons. In this case you need to use the Maintenance tool (Extra menu) and in the face detection section do the option "Clear training data and rebuild". Based on the confirmed faces in the database, new face matrices are created for all. Maik
@Justin, Did you see the previous message from Maik ? Gilles Caulier
Created attachment 162362 [details] attachment-80579-0.html Thanks for the reminder. I did try Maik's suggestion; there was some improvement but still not great. I then made a duplicate of my data and cleared any face exit data using exiftool. Starting fresh, the results were much better. The photo collection belonged to my father, who sometimes had 10 copies of the same photo scattered across multiple directories. I got distracted by the duplicates and didn't provide an update. I apologize. I think the accuracy is pretty good. In my opinion, the interface for accepting face tags is not as efficient as Picassa. On Sat, Oct 14, 2023, 11:20 PM <bugzilla_noreply@kde.org> wrote: > https://bugs.kde.org/show_bug.cgi?id=472266 > > --- Comment #2 from caulier.gilles@gmail.com --- > @Justin, > > Did you see the previous message from Maik ? > > Gilles Caulier > > -- > You are receiving this mail because: > You reported the bug.
Hi Justin, We working first to integrate 2 new DNN models (YuNet + SFace) in the face management to improve performances of the detection and recognition. The recognition workflow will be changed/fixed for 8.5.0, but it's not yet complete... Questions: - Which extra program did you use uner Windows to tag faces in XMP metadata? - Can you share a file sample to double check? - Did you uses XMP sidecar file? Best Gilles Caulier
(In reply to caulier.gilles from comment #4) > Hi Justin, > > We working first to integrate 2 new DNN models (YuNet + SFace) in the face > management to improve performances of the detection and recognition. The > recognition workflow will be changed/fixed for 8.5.0, but it's not yet > complete... > > Questions: > > - Which extra program did you use uner Windows to tag faces in XMP metadata? > - Can you share a file sample to double check? > - Did you uses XMP sidecar file? > > Best > > Gilles Caulier I used Picasa. When I bought a new computer, I began a search for a new photo management software and after trying many different options I found digikam. I believe Picasa has the option to export face region data to xmp. If I still have the old files I will upload a sample. I don't know if the files will be helpful because the face region data may have been edited by the multiple different face tagging software I tried. I have been thinking about face tagging in digikam vs Picasa. Picasa seemed to pre-group similar faces and then assign that grouping to a face tag. Picasa would keep suggesting groups to add to a face tag. It was an efficient way to build up a new database, but I also wonder if this interface hints at how Picasa was handling face detection internally. Digikam's documentation acknowledges that a person's face can vary in appearance for multiple reasons: "One reason can be that there are too many face tags assigned to a person which shows this person in a way that doesn’t really help the search algorithm, e.g. with sunglasses, blurred, unusual colors, carnival make up, dark shaded areas in the face, baby/kid/adult photographs mixed… Another reason to use that option can be false face recognition due to a wrong accuracy value in the Settings tab." What if digikam assigned multiple groups(clusters) to a single person tag? I'm assuming that a detected face is assigned a vector. The Face Accuracy slider determines how similar two vectors must be for the face to be considered the same. Initially the definition of a face results in a tight cluster but as more variations of the same person's face are added the cluster spreads out and may overlap with other people's face clusters. If a person's face is defined by multiple tighter clusters instead of a broad single cluster, the definition of a face wouldn't degrade with increasing number of detected faces assigned to a person. .
Hi Justin, You're not too far off. You're off by only 127 :) . Each face is represented by 128 vectors. This applies to both OpenFace and SFace. The new SFace extraction model we're implementing is much more accurate at extracting face features (vectors), so matching is more accurate. We then use a KDTree for KNN classification of the unknown image. I should have something you can test with by the end of the week. I would love for you to give it a try and see what you think if you don't mind running a pre-release version of digiKam. First, I think you'll find the rate of false-positives is much, much lower. It also does a better job of accurately matching fuzzy/blurred/pixelated faces, too. In the future I plan on implementing clustering to further refine the KDTree which will better detect outliers. For the UI, face thumbnail images are grouped typically by the album in which they were found. You can easily accept multiple suggestions at once using shift-click or ctrl-click to select multiple images and then clicking confirm on one image to confirm the group.
Hi Justin, Can you confirm this is fixed for you? Cheers, Mike