达摩院-目标检测
连接器

达摩院-目标检测

连接器

需两次购买:①订购原厂商接口 ②订购易源会员包代理转发;基于阿里云计算机视觉与深度学习技术,对通用或指定的目标进行检测、识别。可识别数十种车辆部件、位置以及名称等。广泛应用于安防、交通等行业内图像场景的目标检测与跟踪。

会员资源包统一计费,无需单独购买,开通会员包后可直接调用。
物体检测
接入点说明
可以检测输入图像中的物体。阿里原接口订购地址:https://vision.aliyun.com/experience/detail?tagName=objectdet&children=DetectObject

输入限制
图片格式:JPEG、JPG、PNG、BMP。
图片URL地址中不能包含中文字符。
接口地址
https://connector.showapi.com/2482-10?appKey={your_appKey}查看密钥调用帮助
返回格式JSON
请求方式POST/GET
案例截图
案例
请求参数
Header 参数
参数名称类型示例值必须描述
content-typeString
application/x-www-form-urlencoded
Post 表单
参数名称类型示例值必须描述
ImageURLString
https://viapi-test.oss-cn-shanghai.aliyuncs.com/test-team/detobject.jpg
输入图片URL地址。
ds_idString
-
返回参数
该接口返回经 showapi_res_body 系统封装,业务数据均位于该对象内;系统级字段见
返回体
cURL
curl -X POST "https://connector.showapi.com/2482-10?appKey=YOUR_APPKEY" \
  -H "content-type: application/x-www-form-urlencoded" \
  -d "ImageURL=https%3A%2F%2Fviapi-test.oss-cn-shanghai.aliyuncs.com%2Ftest-team%2Fdetobject.jpg&ds_id="
返回示例
JSON
{
  "showapi_res_error": "",
  "showapi_res_code": 0,
  "showapi_res_id": "5fd6e04d8d57baa6480529dc",
  "showapi_res_body": {
    "Data": {
      "Elements": [
        {
          "Boxes": [
            468,
            238,
            531,
            299
          ],
          "Type": "chair",
          "Score": 0.266
        },
        {
          "Boxes": [
            452,
            168,
            531,
            233
          ],
          "Type": "chair",
          "Score": 0.213
        },
        {
          "Boxes": [
            477,
            67,
            484,
            98
          ],
          "Type": "picture/frame",
          "Score": 0.257
        },
        {
          "Boxes": [
            487,
            44,
            501,
            96
          ],
          "Type": "picture/frame",
          "Score": 0.308
        },
        {
          "Boxes": [
            503,
            26,
            524,
            85
          ],
          "Type": "picture/frame",
          "Score": 0.201
        },
        {
          "Boxes": [
            161,
            141,
            181,
            158
          ],
          "Type": "pillow",
          "Score": 0.515
        },
        {
          "Boxes": [
            473,
            143,
            496,
            157
          ],
          "Type": "pillow",
          "Score": 0.293
        },
        {
          "Boxes": [
            241,
            145,
            253,
            166
          ],
          "Type": "pillow",
          "Score": 0.214
        },
        {
          "Boxes": [
            449,
            97,
            477,
            140
          ],
          "Type": "potted plant",
          "Score": 0.374
        },
        {
          "Boxes": [
            443,
            136,
            531,
            190
          ],
          "Type": "sofa",
          "Score": 0.269
        },
        {
          "Boxes": [
            301,
            136,
            352,
            168
          ],
          "Type": "sofa",
          "Score": 0.262
        },
        {
          "Boxes": [
            452,
            167,
            531,
            230
          ],
          "Type": "sofa",
          "Score": 0.242
        },
        {
          "Boxes": [
            145,
            135,
            304,
            202
          ],
          "Type": "sofa",
          "Score": 0.412
        },
        {
          "Boxes": [
            0,
            153,
            272,
            293
          ],
          "Type": "carpet",
          "Score": 0.219
        },
        {
          "Boxes": [
            171,
            172,
            214,
            214
          ],
          "Type": "coffee table",
          "Score": 0.458
        },
        {
          "Boxes": [
            386,
            159,
            428,
            192
          ],
          "Type": "coffee table",
          "Score": 0.285
        },
        {
          "Boxes": [
            337,
            185,
            420,
            274
          ],
          "Type": "coffee table",
          "Score": 0.358
        },
        {
          "Boxes": [
            503,
            26,
            524,
            85
          ],
          "Type": "mirror",
          "Score": 0.214
        }
      ],
      "Height": 300,
      "Width": 533
    },
    "ret_code": 0,
    "remark": "请求成功",
    "RequestId": "5EAD194B-C1CA-444E-9E08-F2C84C4FE9DE"
  }
}
MCP 服务集成接口级

在 Cherry Studio、ChatBox 等支持 MCP 的客户端中配置,将 {your_appKey} 替换为真实 AppKey(AppKey 管理)。该服务覆盖本接口全部接入点。

MCP JSON
{
  "mcpServers": {
    "showapi-mcp-2482": {
      "url": "http://www.showapi.com.cn/mcp/2482/{your_appKey}"
    }
  }
}
OpenAPI 文档接口级

标准 OpenAPI 3.0 文档,覆盖本接口全部接入点,可导入 Apifox / Postman / Swagger UI,或供 AI Agent 直接消费。