Welcome new user! You can search existing questions and answers without registering, but please register to post new questions and receive answers. Note that due to large amounts of spam attempts, your first three posts will be manually moderated, so please be patient.
Because of un-manageable amounts of spam despite our use of CAPTCHAs, email authorization, and other tools, we have discontinued this forum (see the 700k+ registered users with validated email addresses at right?). Please email us any questions or post bug reports and feature requests on GitHub at https://github.com/jevois -- The content below remains available for future reference.
Welcome to JeVois Tech Zone, where you can ask questions and receive answers from other members of the community.

Face Recognition

0 votes
Hello, I want to make a face recognizer on JeoVois. There are some questions about it?

1. It's possible ?

2. What modules sould I use?

3. What about accurancy?

4. What is the best approach you can suggest me?
asked Oct 27, 2017 in Programmer Questions by Deatherkill (210 points)

1 Answer

0 votes
Yes, it is possible, but it is not one of the out-of-the-box modules yet. So you would have to find the method you like best. Maybe start with opencv 3.3 and python. This way, you can directly port that code to JeVois without the need to install cross-compilers, etc. Have a look here for an example:

https://www.superdatascience.com/opencv-face-recognition/

and there are many more online. Other libraries are available, possibly with better performance, but require C++ programming, for example dlib. As far as performance, it will depend both on th emethod and on your training data.
answered Oct 27, 2017 by JeVois (46,580 points)
...