Custom TFLite-based face recognition plugin for Capacitor
npm install capacitor-face-recognitioncreating a custom plugin for company's internal projects
``bash`
npm install capacitor-face-recognition
npx cap sync
`typescript`
getEmbedding(options: { image: string; }) => Promise<{ embedding: number[]; }>
Get 128-D face embedding from a base64-encoded JPEG/PNG face image.
| Param | Type |
| ------------- | ------------------------------- |
| options` | { image: string; } |
Returns: Promise<{ embedding: number[]; }>
--------------------