01-05-2016 09:12 AM
Hello all
I want to connect my mobile by MyRIO, In datails I want to design an image processing program which overlay object that achived some requirements. I want to monitoring these results .
If I don't have a pc , can I transfer the image from MyRIO to my android ohone via wifi or any other connection protocles?
Thanks
01-05-2016 11:37 AM
You have a few options, but I think the simplest is to create a LabVIEW Web Service on the myRIO which serves up the image file as binary data. I think you can do this by reading the file from the myRIO (e.g. from disk) in the web service and outputting it to either a text terminal or using a binary 'stream'.
Other options include BASE64 encoding the file data and returning that via TCP / WebSockets / Web Service. You can possibly use a Static Content folder of a Web Service and overwrite the file in that location.
You could also upload the image to a web server (e.g. using POST to a web script or FTP) and then just use the web url of the uploaded image.