Browse Source
update the readme.
Signed-off-by: wxywb <xy.wang@zilliz.com>
main
wxywb
2 years ago
1 changed files with
10 additions and
17 deletions
-
README.md
|
|
@ -19,28 +19,21 @@ This operator extracts embedding vector from facial image using [Inception-ResNe |
|
|
|
|
|
|
|
Extract face image embedding from './img.png'. |
|
|
|
|
|
|
|
*Write the pipeline in simplified style*: |
|
|
|
*Write a pipeline with explicit inputs/outputs name specifications:* |
|
|
|
|
|
|
|
```python |
|
|
|
import towhee |
|
|
|
from towhee.dc2 import pipe, ops, DataCollection |
|
|
|
|
|
|
|
towhee.glob('./img.png') \ |
|
|
|
.image_decode.cv2() \ |
|
|
|
.face_embedding.inceptionresnetv1() \ |
|
|
|
.to_list() |
|
|
|
``` |
|
|
|
|
|
|
|
*Write a same pipeline with explicit inputs/outputs name specifications:* |
|
|
|
p = ( |
|
|
|
pipe.input('path') |
|
|
|
.map('path', 'img', ops.image_decode()) |
|
|
|
.map('img', 'vec', ops.face_embedding.inceptionresnetv1()) |
|
|
|
.output('img', 'vec') |
|
|
|
) |
|
|
|
|
|
|
|
```python |
|
|
|
import towhee |
|
|
|
|
|
|
|
towhee.glob['path']('./img.png') \ |
|
|
|
.image_decode.cv2['path', 'img']() \ |
|
|
|
.face_embedding.inceptionresnetv1['img', 'vec']() \ |
|
|
|
.select['img','vec']() \ |
|
|
|
.show() |
|
|
|
DataCollection(p('img.png')).show() |
|
|
|
``` |
|
|
|
|
|
|
|
<img src="https://towhee.io/face-embedding/inceptionresnetv1/raw/branch/main/result.png" alt="result" style="height:60px;"/> |
|
|
|
|
|
|
|
|
|
|
|