I'm making a face recognition app that uses local camera to capture the face and encodes it into a 128-d numpy array via chaquopy. What I want to make is to send that numpy array over network to a server. The problem is I dont know how to send a numpy array via network or a chaquopy-PyObject efficiently. Please give me advices
I can convert the numpy array into a json file or a string but this time it'll take really long time to execute. Speed is really important so the solution should be the closest to the most efficient way.