UNPKG
@paulinasource/face-capture-landmarks-lib
Version:
latest (1.0.10)
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Biblioteca React para captura facial e detecção de landmarks em tempo real.
@paulinasource/face-capture-landmarks-lib
/
lib
/
types
/
faceLandmarks.ts
14 lines
(13 loc)
•
298 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Type definition for facial landmarks
export
type
FaceLandmarks
= [
number
,
number
][];
// Type definitions for detected head movements
export
type
HeadMovement
=
"faceClose150"
|
"faceClose200"
|
"faceClose250"
|
"blinkLeft"
|
"blinkRight"
|
"center"
|
"left"
|
"right"
|
"up"
|
"down"
;