README.md 594 字节
Newer Older
走神的阿圆's avatar
走神的阿圆 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
## 数据格式  
input: {files: {"image": [file_1, file_2, ...]}}  
output: {"results":[result_1, result_2, ...]}  

## Serving快速启动命令  
```shell
$ hub serving start -m deeplabv3p_xception65_humanseg  
```  

## python脚本  
```shell
$ python deeplabv3p_xception65_humanseg_serving_demo.py
```

## 结果示例  
```python
[  
    {  
        "origin": "girl.jpg",  
        "processed": "humanseg_output/girl_2.png"  
    }  
]  
```
结果含有生成图片的base64编码,可提取生成图片,示例python脚本生成图片位置为当前目录下的output文件夹中。