Skip to main content
. 2024 May 30;24(11):3524. doi: 10.3390/s24113524
Algorithm 1 Classifiers testing process.
  • 1:

    m – user identifier, m=1,,M;

  • 2:

    Si=(signi,k) – a sample (signi – signature, k – claimed class);

  • 3:

    P – vector of probabilities of belonging signi to M classes;

  • 4:

    Ta – acceptance threshold value;

  • 5:

    for all samples from the testing set (i=1,,K) do

  • 6:

       Select Si=(signi,k). Enter signi at the input of the classifier

  • 7:

       Check the classifier output P;

  • 8:

       if P[k]Ta and P[k]=maxmMP then

  • 9:

           positive user verification;

  • 10:

       else

  • 11:

         forgery detection;

  • 12:

       end if

  • 13:

    end for