Hello @Padraig McGloin , you may check https://stackoverflow.com/questions/61790607/how-do-i-receive-multipart-form-data-in-azure-function/63305138#63305138 and see if this helps at all.
Passing data to/from Azure Functions
I am working on my final year project using Python and VS Code.
This involves using the live depth data from a Kinect V2 which then gets processed to predict the motion of an object.
The steps the image shall go through include:
- Background Subtraction
- Object Detection
- Object Motion Tracking
- Object Motion Prediction
As I am using a Microsoft Surface Pro 4 (i7) even the background subtraction step makes my device chug (512*424 16bit images).
I am wondering can I use Azure Functions to offload the processing (e.g. send a frame to azure to compute then return the computed data) or is a Virtual Machine a better option?
Questions:
Can I use Azure Functions or should I use a VM for this?
If Azure Functions can be used:
Can an Azure Functions be passed data, such as an image frame/array?
Can an Azure Functions return data, such as an image frame/array?
How?
I have no real experience with Azure or VMs in general as I am used to running scripts locally.
Any help would be much appreciated, thanks.