BASE_DIR=/path/to/images/待标注的目录 python app/main.py
USE_TINY=true ./server /path/to/images/待标注的目录 # 使用 mobile-sam 模型
USE_API=https://example.com/api/sam BASE_DIR=/path/to/images/待标注的目录 python app/main.py
API 需要实现以下请求参数:
```json
{
"images": "base64编码的图片",
"inputs":[
[640, 640, 1],
[640, 660, 1],
[640, 680, 0]
],
"masks":"numpy string"
}
> 其中 inputs 是一个二维数组,表示每个输入的坐标,格式为 [height, width, x], x 只能是0 或 1,0表示背景,1表示前景
API 只需要返回以下格式即可:
{
"mask":"base64编码的掩码",
"inputs":[
//...
]
}