在 python azure function app 中请求图像文件(本地而不是 URL)进行机器学习处理

Requesting an image file (local and NOT an URL) for machine learning processing in python azure function app

正在开发通过 'post' 请求接收输入图像文件的 azure 函数应用程序。图像应直接作为输入(不将其存储在 Azure 存储容器中)提供给机器学习算法进行处理。获取图像文件并在 python azure 函数中读取其内容的代码段是什么。

def main(req: func.HttpRequest) -> func.HttpResponse:
logging.info('Python HTTP trigger function processed a request.')
try:
    image =  req.files.get('image') 
    uploadedImage = image.read()   # uploadedImage contains image data 
    .......
except Exception as e:
    logging.info(e)