Face Engine SDK  5.14.0
A face detection, recognition and tracking engine.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
IHumanLandmarksBatch.h
1 #pragma once
2 
3 #include <fsdk/IRefCounted.h>
4 #include <fsdk/Types/HumanLandmarks.h>
5 #include <fsdk/Types/Landmarks.h>
6 #include <fsdk/Types/Ref.h>
7 #include <fsdk/Types/Span.h>
8 
9 #include <cstddef>
10 
11 namespace fsdk {
12 
13 #ifndef DOXYGEN_SHOULD_SKIP_THIS
14  DECLARE_SMARTPTR(IHumanLandmarksBatch);
15 #endif
16 
25  virtual size_t getSizeOfLandmarks17() const noexcept = 0;
26 
33  virtual Span<const HumanLandmarks17> getLandmarks17(size_t index = 0) const noexcept = 0;
34 
35  };
36 
37 }
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:59
Base strong reference counted object interface.
Definition: IRefCounted.h:36
Landmarks result batch interface.
Definition: IHumanLandmarksBatch.h:20
virtual size_t getSizeOfLandmarks17() const noexcept=0
Returns size.
virtual Span< const HumanLandmarks17 > getLandmarks17(size_t index=0) const noexcept=0
Returns HumanLandmarks Span.
Span. Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:14
Reference counted object interface.