photools.com Community

IMatch Discussion Boards => General Discussion and Questions => Topic started by: abgestumpft on April 12, 2020, 09:31:20 PM

Title: IMatch 2020.4.2
Post by: abgestumpft on April 12, 2020, 09:31:20 PM
Hi,

thanks for the continuous improvement of iMatch!

I did some quick checks on some points that improved:
1. TimWiz #01081 -> Setting date/time to 00:xx -> Working
2. Person age less than one month #01076 -> Working
3. Normal (Long) File Names for ExifTool #01078 -> Copy & Paste Metadate to long "ü"-Files -> Working

Will play arround with the new Face Manager the next days, on a quick check looks like a very good improvement.
Already found a face that was trained and rejected at the same time  8)

happy Easter :)
Title: Re: IMatch 2020.4.2
Post by: Mario on April 12, 2020, 09:33:33 PM
Thanks for the feedback  :)
Rejected beats trained. If you un-reject the face it will be trained again.
Title: Re: IMatch 2020.4.2
Post by: Mees Dekker on April 12, 2020, 10:06:04 PM
Installed IMatch 2020.4.2 without a glitch.

Face manager is really a very major improvement. I was on the brink of letting go of the people view. But this is really a very big step forward.

I also have the impression that the number of warnings after a database diagnosis dropped dramatically. Sometimes, there were several hundreds of warnings; now it dropped to 1 or 2, even after rejecting or confirming hundreds of faces in bulk.

Very well done. Will be playing around a bit more tomorrow.
Title: Re: IMatch 2020.4.2
Post by: Mario on April 12, 2020, 10:34:13 PM
Very well. Keep an eye on these warnings and what causes them.
Stay safe.
Title: Re: IMatch 2020.4.2
Post by: plastikman on April 13, 2020, 01:46:24 AM
Great update indeed! Face Manager is truly amazing. Thanks for the hard work. I will post my feedback regarding bugs tomorrow.
Title: Re: IMatch 2020.4.2
Post by: desmooloch on April 13, 2020, 08:40:20 AM
yeah cool! :)
If i have more than 10 trained faces imatch uses now only the first 10?

//Edit: i have no Header line (Name) in facemanager. I only see the counter (files) but i have no clue wich Person i'm managing
Title: Re: IMatch 2020.4.2
Post by: Mario on April 13, 2020, 09:02:18 AM
IMatch uses as many faces as you train in the FM.
But it limits the number of automatic trained faces to 10.

Show us a screen shot of what you mean by "no header line".
The PM uses the label of the person, as configured under Edit > Preferences > Application.
You may also want to try and click into the MF window and press Ctrl+F5 to refresh it once.
Title: Re: IMatch 2020.4.2
Post by: ben on April 13, 2020, 10:33:00 AM
Thanks Mario!
The new Face Manager looks great  ;D ;D

What should happen if i open the FM from one person highlighted in the people view?
If i toogle "faces in current scope only" nothing changes.

The internal viewer is also very helpfull.
Maybe you could open it but double clicking one face in the FM.

Ben
Title: Re: IMatch 2020.4.2
Post by: Mario on April 13, 2020, 10:36:47 AM
QuoteWhat should happen if i open the FM from one person highlighted in the people view?
If i toogle "faces in current scope only" nothing changes.
When the scope is all faces of the person (you start it from the people view) there cannot be a change when you toggle this switch.

QuoteMaybe you could open it but double clicking one face in the FM.

Double-clicking a face in FM opens the integrated image viewer in the FM.
Please refer to the The Face Manager (https://www.photools.com/help/imatch/#people-face-manager.htm?dl=h-2) help topic for all keyboard and mouse commands.
Title: Re: IMatch 2020.4.2
Post by: desmooloch on April 13, 2020, 11:42:41 AM
Quote from: Mario on April 13, 2020, 09:02:18 AM
IMatch uses as many faces as you train in the FM.
But it limits the number of automatic trained faces to 10.

Show us a screen shot of what you mean by "no header line".
The PM uses the label of the person, as configured under Edit > Preferences > Application.
You may also want to try and click into the MF window and press Ctrl+F5 to refresh it once.

pls see attached post. I can´t see the name of the person i'm managing.
Refresh (you mean shift+F5?) does not help.
Title: Re: IMatch 2020.4.2
Post by: Mario on April 13, 2020, 12:28:15 PM
Do you use a label or tag?
Title: Re: IMatch 2020.4.2
Post by: desmooloch on April 13, 2020, 01:10:32 PM
Quote from: Mario on April 13, 2020, 12:28:15 PM
Do you use a label or tag?

I filled a tag in person editor.

//edit: If i change settings in "Application" to shortname i can see the name. But not with tag.
Title: Re: IMatch 2020.4.2
Post by: Mario on April 13, 2020, 06:01:57 PM
Fixed for the next release, thanks.

Quick work-around:

1. Open c:\ProgramData\photools.com\IMatch6\webroot\imatch\apps\FEATURES\people\face-manager\src\app.js in Windows Notepad.
2. Search for getLabel
3. Change this method so it looks like this:


            getLabel()
            {
                if (this.labelProperty == 'tag') {
                    if (this.person.entity) {
                        return this.person.entity.tag;
                    }
                }
                else {
                    return this.getProperty(this.labelProperty);
                }
            },



Don't forget the comma after the closing }