123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "about": {
- "trial": false,
- "author": {
- "name": "EMQ",
- "email": "contact@emqx.io",
- "company": "EMQ Technologies Co., Ltd",
- "website": "https://www.emqx.io"
- },
- "helpUrl": {
- "en_US": "https://ekuiper.org/docs/en/latest/sqls/custom_functions.html",
- "zh_CN": "https://ekuiper.org/docs/zh/latest/sqls/custom_functions.html"
- },
- "description": {
- "en_US": "Example plugin to demonstrate inferring Tensorflow lite model to label an image",
- "zh_CN": "示例插件,演示如何使用Tensorflow lite模型对图像进行标记推断。"
- }
- },
- "name": "labelImage",
- "functions": [{
- "name": "labelImage",
- "example": "labelImage(col1)",
- "hint": {
- "en_US": "Label an image by tensorflow lite model.",
- "zh_CN": "采用 tensorflow lite 模型标记图片。"
- },
- "args": [
- {
- "name": "image",
- "hidden": false,
- "optional": false,
- "control": "field",
- "type": "string",
- "hint": {
- "en_US": "Input image",
- "zh_CN": "输入图像"
- },
- "label": {
- "en_US": "Image",
- "zh_CN": "图像"
- }
- }
- ],
- "return": {
- "type": "string",
- "hint": {
- "en_US": "Image Label",
- "zh_CN": "图像标注"
- }
- },
- "node": {
- "category": "function",
- "icon": "iconPath",
- "label": {
- "en_US": "Label Image",
- "zh_CN": "图像标注"
- }
- }
- }]
- }
|