logo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readme
Files and versions

Updated 3 years ago

face-embedding

Inception-ResNet v1 Face Embedding Operator

author: David Wang

Desription

This operator extracts embedding vector from facial image using Inception-ResNet. The implementation is an adaptation from timesler/facenet-pytorch.

Code Example

Extract face image embedding from './img.png'.

Write the pipeline in simplified style:

import towhee

towhee.glob('./img.png') \
  .image_decode.cv2() \
  .face_embedding.inceptionresnetv1() \
  .tolist()

Write a same pipeline with explicit inputs/outputs name specifications:

import towhee

towhee.glob['path']('./img.png') \
  .image_decode.cv2['path', 'img']() \
  .face_embedding.inceptionresnetv1['img', 'vec']() \
  .select('img','vec') \
  .show()
result

Factory Constructor

Create the operator via the following factory method

face_embedding.inceptionresnetv1(image_size = 160)

Parameters:

image_size: int

Scaled input image size to extract embedding. The higher resolution would generate the more discriminateive feature but cost more time to calculate.

supported types: int, default is 160.

Interface

A face embedding operator takes a face image as input. It extracts the embedding back to ndarray.

Parameters:

img: towhee.types.Image (a sub-class of numpy.ndarray)

​ The input image.

Returns: numpy.ndarray

​ The extracted image embedding.

wxywb 1af989f148 refactor to new standard. 2 Commits
file-icon .README.md.swp
12 KiB
download-icon
refactor to new standard. 3 years ago
file-icon .gitattributes
1.1 KiB
download-icon
Initial commit 3 years ago
file-icon README.md
1.6 KiB
download-icon
refactor to new standard. 3 years ago
file-icon __init__.py
885 B
download-icon
refactor to new standard. 3 years ago
file-icon inceptionresnetv1.py
2.1 KiB
download-icon
refactor to new standard. 3 years ago
file-icon requirements.txt
82 B
download-icon
refactor to new standard. 3 years ago
file-icon result.png
110 KiB
download-icon
refactor to new standard. 3 years ago