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.

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)
...