预置物体检测模式
输入
系统预置物体检测输入输出模式,适用于物体检测的模型,使用该模式的模型被标识为物体检测模型。预测请求路径“/”,请求协议为“HTTP”,请求方法为“POST”,调用方需采用“multipart/form-data”内容类型,以“key”为“images”,“type”为“file”的格式输入待处理图片。选择该模式时需确保您的模型能处理key为images的输入数据。
输出
推理结果以“JSON”体的形式返回,具体字段请参见表1。
字段名 |
类型 |
描述 |
---|---|---|
detection_classes |
字符串数组 |
输出物体的检测类别列表,如["yunbao","cat"] |
detection_boxes |
数组,元素为浮点数数组 |
输出物体的检测框坐标列表,坐标表示为 |
detection_scores |
浮点数数组 |
输出每种检测列表的置信度,用来衡量识别的准确度。 |
推理结果的“JSON Schema”表示如下:
{ "type": "object", "properties": { "detection_classes": { "items": { "type": "string" }, "type": "array" }, "detection_boxes": { "items": { "minItems": 4, "items": { "type": "number" }, "type": "array", "maxItems": 4 }, "type": "array" }, "detection_scores": { "items": { "type": "string" }, "type": "array" } } }