For one my Robotics projects, I am trying to grab an image from Nao Robot's camera and use Tensorflow for object recognition.
The problem is that the Robot's NaoQi API is built on Python2.7 32bit. (http://doc.aldebaran.com/1-14/dev/python/install_guide.html)
The Tensorflow Object recognition API works only with 64bit. (https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/installation.md and https://www.tensorflow.org/install/install_windows)
I am using Windows 10 and I have both Python 2.7 32 bit and 3.6 64bit installed and I am able to run the modules independently but I am unable to pass the image between the two.
Are there any workarounds to address this issue? Thank you.