You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
import json
|
|
import base64
|
|
from PIL import Image
|
|
import io
|
|
from model_loader import ModelLoader
|
|
import numpy as np
|
|
import yaml
|
|
|
|
|
|
def init_context(context):
|
|
context.logger.info("Init context... 0%")
|
|
|
|
with open("/opt/nuclio/function.yaml", 'rb') as function_file:
|
|
functionconfig = yaml.safe_load(function_file)
|
|
labels_spec = functionconfig['metadata']['annotations']['spec']
|
|
labels = {item['id']: item['name'] for item in json.loads(labels_spec)}
|
|
|
|
model_handler = ModelLoader(labels)
|
|
context.user_data.model_handler = model_handler
|
|
|
|
context.logger.info("Init context...100%")
|
|
|
|
def handler(context, event):
|
|
context.logger.info("Run tf.matterport.mask_rcnn model")
|
|
data = event.body
|
|
buf = io.BytesIO(base64.b64decode(data["image"]))
|
|
threshold = float(data.get("threshold", 0.2))
|
|
image = Image.open(buf)
|
|
|
|
results = context.user_data.model_handler.infer(np.array(image), threshold)
|
|
|
|
return context.Response(body=json.dumps(results), headers={},
|
|
content_type='application/json', status_code=200) |