Hello everyone, I am trying to develop realtime face recognition using neural networks. I have read several answers in this forum, such as using the dnn module of opencv, caffe model. But I am still confused about the steps, so far I have written the steps as follows:
- prepare a face dataset to train face detection
- prepare a recognizable face dataset
- train the system to detect faces using haar or lbp cascade classifiers
- train the system to recognize faces based on detected faces using cnn
My question is :
- Is it possible to create a real time face recognition application using CNN to train face detection and face recognition using OpenCV?
- If possible, what do I need? and are my steps correct?
Thanks in advance :)