Vuo  2.3.2
VuoFace.h
Go to the documentation of this file.
1 
10 #pragma once
11 
12 #include "VuoRectangle.h"
13 #include "VuoPoint2d.h"
14 
26 typedef struct
27 {
28  VuoRectangle face;
29  VuoPoint2d leftEye;
30  VuoPoint2d rightEye;
31  VuoPoint2d nose;
32  VuoPoint2d mouthLeftEdge;
33  VuoPoint2d mouthRightEdge;
34 } VuoFace;
35 
37 struct json_object *VuoFace_getJson(const VuoFace f);
38 char *VuoFace_getSummary(const VuoFace f);
39 
41  VuoPoint2d leftEye,
42  VuoPoint2d rightEye,
43  VuoPoint2d nose,
44  VuoPoint2d mouthLeftEdge,
45  VuoPoint2d mouthRightEdge);
46 
48 
51 VuoFace VuoFace_makeFromString(const char *initializer);
52 char *VuoFace_getString(const VuoFace value);
54