How to adaptively add and use face images collected while authentication to improve performance of face authentication?

前端 未结 2 676
说谎
说谎 2020-12-17 06:32

My current project is to build a face authentication system. The constraint I have is: during enrollment, the user gives single image for training. However, I can add and us

2条回答
  •  粉色の甜心
    2020-12-17 07:14

    I would recommend that you give SOM(self-organizing maps) a close look. I think it contains the solutions to all the problems and constraints you have mentioned.

    You can employ it for the single image per person problem. Also, using the multiple SOM-face strategy, you can adapt it for cases when additional images are available for training. Whats pretty neat about the whole concept is that when a new face is encountered, only the new one rather than the whole original database is needed to be re-learned.

    A few links which you might find helpful along the way:

    http://en.wikipedia.org/wiki/Self-organizing_map (wiki)

    http://cs.nju.edu.cn/zhouzh/zhouzh.files/publication/tnn05.pdf (An interesting research paper which demonstrates the above mentioned technique)

    Good Luck

提交回复
热议问题