简单的一次请求, 快速处理您的图片
欢迎使用优图平台 API,您可以使用优图平台 API 来处理您的图片, 优图平台 API 提供了一系列的接口, 您可以使用这些接口来处理您的图片, 比如: 车牌识别替换、车辆背景消除、图片合成等等。
1. 基础信息
- Base URL:
https://youtu.888haoche.com/api
- 格式: JSON
- 认证: 需要 API 密钥
2. 认证
所有 API 请求都需要在头部包含 Authorization
字段,格式如下:
Authorization: YOUR_API_KEY
API 密钥可在个人中心
- 开发与设置
获取
3. 快速开始
- 根据图片 URL 请求处理
curl --location 'https://youtu.888haoche.com/api/process' \
--header 'Authorization: YOUR_API' \
--form 'image=YOUR_IMAGE_URL'
- 直接上传图片请求处理
curl --location 'https://youtu.888haoche.com/api/process' \
--header 'Authorization: YOUR_API' \
--form 'file=@/path/to/file.jpg'
4. 接口列表
4.1 车牌识别替换
- 请求地址:
/remove-plate
- 方法: POST
- 请求参数:
参数 | 类型 | 必填 | 描述 |
---|---|---|---|
image | string | 是 | 图片地址, 图片base64有值时,非必填 |
image_base64 | string | 是 | 图片base64, 图片地址有值时,非必填 |
type | int | 是 | 遮挡类型, 1-模糊, 2-遮挡 |
plate_image | string | 否 | 车牌遮挡图片地址 |
plate_image_base64 | string | 否 | 车牌遮挡图片base64 |
- 格式: Content-Type:application/json
- 请求示例:
{
"image": "YOUR_IMAGE_URL",
"type": 1,
"plate_image": "PLATE_IMAGE_URL"
}
- 响应示例
{
"msg": "",
"obj": {
"result": IMAGE_URL
},
"result": "0000",
"serverTime": 1715571007461
}
4.2 车辆背景消除
- 请求地址:
/remove-background
- 方法: POST
- 请求参数:
参数 | 类型 | 必填 | 描述 |
---|---|---|---|
image | string | 是 | 图片地址, 图片base64有值时,非必填 |
image_base64 | string | 是 | 图片base64, 图片地址有值时,非必填 |
- 格式: Content-Type:application/json
- 请求示例:
{
"image": "YOUR_IMAGE_URL"
}
- 响应示例
{
"msg": "",
"obj": {
"result": IMAGE_URL
},
"result": "0000",
"serverTime": 1715571007461
}