Show HN: Palm Vein Authentication with a Raspberry Pi(ibrahimirfan.com)
ibrahimirfan.com
Show HN: Palm Vein Authentication with a Raspberry Pi
https://ibrahimirfan.com/blog/palm-vein-authentication
https://ibrahimirfan.com/blog/palm-vein-authentication
Have you tried the performance with some other user?
I would also probably use data augmentation and ie. flip and rotate images, vary contrast etc. That might prevent some amount of overfitting.
With these kinds of problems usually classifying models are not very well suited. Basically with neural networks you are causing the manifold to partition whole output space and so you can expect that there is practically unlimited amount of different patterns that look equal to your hand (the class you have trained to be 'your hand')
For better model you need more data, it can be labeled of course but there is also unsupervised options you could consider such as autoencoders. With facial recognition the siamese networks and triplet loss based networks are pretty popular and you could maybe take a look into them.