How to align face images c++ opencv

后端 未结 9 526
慢半拍i
慢半拍i 2020-12-13 05:13

I am developing a C++ application for face authentication. First, I have to detect the face and pre-process the image.

  1. For face detection I have used the HaarC
9条回答
  •  无人及你
    2020-12-13 05:28

    Detecting misaligned faces make face recognition difficult. Sometimes you want to fix the alignment, sometimes it is sufficient to exclude the ones that aren't aligned correctly (for instance if you're detecting faces in a video stream). I took the latter approach and trained a special Haar Cascade to only detect correctly aligned, well-lit faces. Details here: http://rwoodley.org/?p=417.

    If you use my cascade let me know how it works for you. I'm curious what results others would obtain. It met my needs.

提交回复
热议问题