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.

Using tensorflow within a python module

+6 votes
Hello,

I am making a new python module in the camera, and want to use certain tensorflow functions. I tried importing tensorflow at the top of the python module, but it gives me an error that says "No module named 'tensorflow' ". I saw that there are a couple tensorflow modules on the camera already, but they are programmed in C++. Basically, I'm just wondering if it's possible to use tensorflow from within a python module on this camera.
asked Apr 7, 2020 in Programmer Questions by obriena (310 points)

1 Answer

+1 vote
We do not support TF directly in Python on JeVois, only C++ for now. However, maybe using OpenCV would help (you should be able to run TF models using the OpenCV framework). That one is fully accessible from Python.
answered Jun 24, 2020 by JeVois (46,580 points)
...