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.

Is there a way to install python libraries into jevois and run a piece of python code

0 votes
I am trying to implement a face recognition module with 'face recognition' python library which in turn uses the dlib c++ library. How can I install the face recognition library into jevois and to create a module which uses jevois to capture video,recognise faces, draw a square around the recognised face with name detected using this library properly imported. I like to use the processing power of Jevois to do this for me.

I have made this possible both in a raspberri pi and a linux machine  but don't know where to start when it comes to Jevois.
asked Jun 23, 2019 in Programmer Questions by tomellickal (170 points)

1 Answer

+1 vote
Have you seen this one? No python there though:

http://jevois.org/tutorials/ProgrammerDlib.html

Are you trying to use this: https://pypi.org/project/face_recognition/

We will look into it as a good example of how to port a python module that has C++ dependencies.
answered Jul 2, 2019 by JeVois (46,580 points)
...