Research Article

Stationary Hand Gesture Authentication Using Edit Distance on Finger Pointing Direction Interval

Pseudocode 2

Pseudocode of the acceptance rate method including its evaluation.
Acceptance Rate:
Input: Training dataset and test dataset
Output: ROC curve
Training phase:
begin
   () for each compares with , where
      calculate edit distances
    () calculate and of
      set as threshold
  () if is within threshold
      
     else
      
  () calculate
end.
Testing phase:
begin
  () for each compares with
      calculate edit distances
  () if is within threshold
      
     else
      
   () calculate
   () plot ROC curve using difference between and
   () find EER from the ROC curve graph
end.