Bug 423113 - Deleted Faces still serve as information to Facial Recognition
Summary: Deleted Faces still serve as information to Facial Recognition
Status: REPORTED
Alias: None
Product: digikam
Classification: Applications
Component: Faces-Workflow (show other bugs)
Version: 8.1.0
Platform: Other Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-06-17 15:57 UTC by Kartik
Modified: 2023-04-29 20:21 UTC (History)
3 users (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Kartik 2020-06-17 15:57:09 UTC
SUMMARY
If a user accidentally confirms a face, and then to correct it, deletes the face, still Facial Recognition uses information from the confirm operation.

STEPS TO REPRODUCE
1. Confirm an Unknown Face to a newly created face.
2. Delete this face, using the Rejection Overlay (cross button)
3. Run Facial Recognition

Here's a video showing this in action : https://imgur.com/a/sYX3cgF

I assume this is happening because the Face is being deleted without removing the association of the Tag Region and the Face Tag. I personally don't think this is desirable, as it forces the Algorithm to operate on incorrect information. Please try to reproduce this bug, as it may be possible that this is just a problem in my branch.

Kartik
Comment 1 Kartik 2020-06-17 15:59:19 UTC
(In reply to Kartik from comment #0)
> SUMMARY
> If a user accidentally confirms a face, and then to correct it, deletes the
> face, still Facial Recognition uses information from the confirm operation.
> 
> STEPS TO REPRODUCE
> 1. Confirm an Unknown Face to a newly created face.
> 2. Delete this face, using the Rejection Overlay (cross button)
> 3. Run Facial Recognition
> 
> Here's a video showing this in action : https://imgur.com/a/sYX3cgF
> 
> I assume this is happening because the Face is being deleted without
> removing the association of the Tag Region and the Face Tag. I personally
> don't think this is desirable, as it forces the Algorithm to operate on
> incorrect information. Please try to reproduce this bug, as it may be
> possible that this is just a problem in my branch.
> 
> Kartik

[Correction]
1. Confirm an Unknown Face to a newly created Face Tag.
Comment 2 Maik Qualmann 2020-06-17 20:54:10 UTC
Yes, the behavior is as described. In principle, it is even desirable. It is only problematic when a face is changed, but there is an option in the maintenance tool to rebuild the training database based on the currently confirmed faces. This should be done from time to time to ensure good recognition. The incorrect identity is then removed. Normally, a face should not be forgotten when you delete an image, for example. The face should be found again later, so there is no deletion in the face database.

Maik
Comment 3 Kartik 2020-06-19 17:38:45 UTC
Hi Maik, rebuilding the training database is certainly a good idea to avoid this error. I wasn't aware that feature existed.

It's certainly desirable for Faces to remain in the database, if an Image is deleted. However, if the User presses (x) on a Face, then he does want to Delete that face (not delete the Image). If the user is implying that this is not a face, then why is it being used as Training Data?

Apologies for any inconvenience.

Kartik
Comment 4 Minh Nghia Duong 2020-08-18 13:35:37 UTC
(In reply to Kartik from comment #3)
> Hi Maik, rebuilding the training database is certainly a good idea to avoid
> this error. I wasn't aware that feature existed.
> 
> It's certainly desirable for Faces to remain in the database, if an Image is
> deleted. However, if the User presses (x) on a Face, then he does want to
> Delete that face (not delete the Image). If the user is implying that this
> is not a face, then why is it being used as Training Data?
> 
> Apologies for any inconvenience.
> 
> Kartik

Hi Kartik,

Yes, I think it should delete the face embedding of a deleted face. Maybe we can add a reference counter to delete the registered identity as well when there isn't any face left? 

Could you point me to the code of the deleting button so that I can have a better understanding of the workflow here?

Nghia
Comment 5 Kartik 2020-08-18 17:32:38 UTC
Hi Nghia,

The Top Level Connections for the Deleting button are done in DigikamItemView. The Delete Button forms part of a FaceRejectionOverlay, and the signal for pressing the delete button is set here: https://invent.kde.org/graphics/digikam/-/blob/master/core/app/items/views/digikamitemview.cpp#L342.

The removeFaces(https://invent.kde.org/graphics/digikam/-/blob/master/core/app/items/views/digikamitemview.cpp#L411) method then delegates deletion to a FacePipeline. I think you might be familiar with FacePipeline functionality. DatabaseWriter works with the FacePipeline and picks up the package (when its time for being processed arrives), and then calls the FaceUtils method for actual removal of the Image-Tag association:

See this connection for DatabaseWriter with FaceUtils: https://invent.kde.org/graphics/digikam/-/blob/master/core/utilities/facemanagement/workers/databasewriter.cpp#L142.

There's multithreaded implementations that lead to DatabaseWriter picking up the package sent via FacePipeline, however it isn't necessary to worry about that in my opinion.

Kartik
Comment 6 Minh Nghia Duong 2020-08-19 22:40:33 UTC
(In reply to Kartik from comment #5)
> Hi Nghia,
> 
> The Top Level Connections for the Deleting button are done in
> DigikamItemView. The Delete Button forms part of a FaceRejectionOverlay, and
> the signal for pressing the delete button is set here:
> https://invent.kde.org/graphics/digikam/-/blob/master/core/app/items/views/
> digikamitemview.cpp#L342.
> 
> The
> removeFaces(https://invent.kde.org/graphics/digikam/-/blob/master/core/app/
> items/views/digikamitemview.cpp#L411) method then delegates deletion to a
> FacePipeline. I think you might be familiar with FacePipeline functionality.
> DatabaseWriter works with the FacePipeline and picks up the package (when
> its time for being processed arrives), and then calls the FaceUtils method
> for actual removal of the Image-Tag association:
> 
> See this connection for DatabaseWriter with FaceUtils:
> https://invent.kde.org/graphics/digikam/-/blob/master/core/utilities/
> facemanagement/workers/databasewriter.cpp#L142.
> 
> There's multithreaded implementations that lead to DatabaseWriter picking up
> the package sent via FacePipeline, however it isn't necessary to worry about
> that in my opinion.
> 
> Kartik

Thanks,

As I see it, FaceUtils only manage face tag and retrieve identity, and FacePipelineFaceTagsIface doesn't hold the information of the registered face embedding. Therefore in order to delete the face embedding in the database, we have to add an additional association between face item and face embedding. If I do it now, it will add up more conflicts to our projects. Therefore I will find a way to do it after the 2 projects merged.

Nghia
Comment 7 caulier.gilles 2020-09-03 06:15:51 UTC
Kartik, Nghia,

Both projects are now merged back to git/master. The road is now open to go to 7.2.0...

Best regards

Gilles
Comment 8 Minh Nghia Duong 2020-09-03 17:36:37 UTC
(In reply to caulier.gilles from comment #7)
Thank Gilles,

Is there any conflicts that worth noticing?

Best,
Nghia
Comment 9 caulier.gilles 2020-09-03 18:08:02 UTC
Hi Nghia,

No conflict at all. All compile fine.

I currently review all code step by step...

In the digikam-devel@kde.org, an user has already tested the new code (just after i merge the branches this morning) and has a question for you. Look here :

http://digikam.1695700.n4.nabble.com/Digikam-7-2-faces-updates-td4713606.html

Gilles
Comment 10 caulier.gilles 2023-04-29 19:42:49 UTC
Maik,

I suppose that file is now fixed since a while no ?

Gilles
Comment 11 Maik Qualmann 2023-04-29 20:21:37 UTC
No, we are not currently deleting face vectors from the face database. A rebuild of the training database with the maintenance tool is still necessary.

Maik