|
Algorithm 1 Fusion of Iris and Signature Traits. |
| 1: |
for each fusion per User do
|
| 2: |
for each User do
|
| 3: |
if iris then
|
| 4: |
Siris ← HammingDistance {//Iris Score Generation} |
| 5: |
else
|
| 6: |
Ssig ← MahalanobisDistance {//Signature Score Generation} |
| 7: |
end if
|
| 8: |
end for
|
| 9: |
for each score do
|
| 10: |
if
Siris
then
|
| 11: |
|
| 12: |
else
|
| 13: |
|
| 14: |
end if
|
| 15: |
end for
|
| 16: |
for each normalized score do
|
| 17: |
if
then
|
| 18: |
|
| 19: |
else
|
| 20: |
|
| 21: |
end if
|
| 22: |
end for
|
| 23: |
|
| 24: |
end for |