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.
We have moved to a new forum at http://jevois.usc.edu, please check it out. The forum at jevois.org/qa will not allow new user registrations but is maintained alive for its useful past questions and answers.
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)
...