Face SDK  1.8.2 Mozart release
Face Recognition Software Development Kit
landmark.h
Go to the documentation of this file.
1 
5 #pragma once
6 
7 #include <face_sdk_base/export.h>
8 #include <c_interface/common/common.h>
9 #include <c_interface/common/face_sdk_class.h>
10 #include <c_interface/common/face_sdk_set.h>
11 
12 extern "C"
13 {
22 DECLARE_FACE_SDK_CLASS(landmark)
23 
24 DECLARE_FACE_SDK_CONSTRUCTOR_DESTRUCTOR(landmark)
25 
26 
35 bool FACE_SDK_C_EXPORT face_sdk__make_landmark_1(int32_t x, int32_t y, face_sdk__landmark_t **landmark);
36 
37 DECLARE_FACE_SDK_SETTER_GETTER_METHODS(landmark, x, int32_t)
38 
39 DECLARE_FACE_SDK_SETTER_GETTER_METHODS(landmark, y, int32_t)
40 
41 }
bool face_sdk__make_landmark_1(int32_t x, int32_t y, face_sdk__landmark_t **landmark)
Makes landmark with specified x and y coordinates.
Face landmark.
Definition: landmark.h:22