ermig1979 / Simd

C++ image processing and machine learning library with using of SIMD: SSE, AVX, AVX-512, AMX for x86/x64, NEON for ARM.
http://ermig1979.github.io/Simd
MIT License
2.06k stars 413 forks source link

Is it possible to detect eye after finding the face? #104

Closed Arunvist closed 5 years ago

Arunvist commented 5 years ago

With this simd source after finding the face detecting eye is possible?

ermig1979 commented 5 years ago

Yes, it is possible. You can also use Simd::Detector, but with other cascade which detect eyes (for example you can use this).

But using of Haar Cascades now is not the best idea. Lately I develop a project to fast inference of previously trained neural models. It is something like Inference Engine but it also supports ARM CPU. May be it will be useful for you. Test examples contain models trained for face detection and face landmarks detection (some of landmarks are correspond to eyes).