Face Engine SDK  5.23.1
A face detection, recognition and tracking engine.
IFaceLandmarksDetector.h
1 
8 #pragma once
9 
10 #include <fsdk/FSDKError.h>
11 #include <fsdk/IObject.h>
12 #include <fsdk/Types.h>
13 #include <fsdk/IFaceLandmarksBatch.h>
14 
15 #include <fsdk/vlc/future.h>
16 
17 namespace fsdk {
18 
19 #ifndef DOXYGEN_SHOULD_SKIP_THIS
20  DECLARE_SMARTPTR(IFaceLandmarksDetector);
21 #endif
22 
24 
38  detectLandmarks5(Span<const Image> images, Span<Span<const Detection>> detections) const noexcept = 0;
39 
53  detectLandmarks68(Span<const Image> images, Span<Span<const Detection>> detections) const noexcept = 0;
54 
69  Span<const Image> images,
70  Span<Span<const Detection>> detections,
71  Span<Span<Result<FSDKError>>> errors) const noexcept = 0;
72 
86  const Image& image,
87  Span<const Detection> detections,
88  Span<Landmarks5> landmarks) const noexcept = 0;
89 
103  const Image& image,
104  Span<const Detection> detections,
105  Span<Landmarks68> landmarks) const noexcept = 0;
106 
119  const Image& images,
120  Span<const Detection> detections,
121  Span<Result<FSDKError>> errors) const noexcept = 0;
122 
137  Span<const Image> images,
138  Span<Span<const Detection>> detections,
139  DetectionType detectionType,
140  Span<Span<Result<FSDKError>>> errors) const noexcept = 0;
141 
145  using FaceLandmarksBatchFuture = vlc::future<IFaceLandmarksBatchPtr>;
146 
162  Span<const Image> images,
163  Span<Span<const Detection>> detections,
164  DetectionType detectionType) const = 0;
165  };
166 
169 } // namespace fsdk
fsdk::Span
Span. @detail Not owning data view. It incapsulated pointer to the continuous array with one or more ...
Definition: Span.h:14
DECLARE_SMARTPTR
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:56
fsdk::IFaceLandmarksDetector::validate
virtual Result< FSDKError > validate(Span< const Image > images, Span< Span< const Detection >> detections, Span< Span< Result< FSDKError >>> errors) const noexcept=0
Validates input of multiple frames in a single function call.
fsdk::IFaceLandmarksDetector::detectLandmarks5
virtual ResultValue< FSDKError, Ref< IFaceLandmarksBatch > > detectLandmarks5(Span< const Image > images, Span< Span< const Detection >> detections) const noexcept=0
Detects landmarks5 on multiple images.
fsdk
SDK namespace.
Definition: IAGSEstimator.h:8
fsdk::IFaceLandmarksDetector::FaceLandmarksBatchFuture
vlc::future< IFaceLandmarksBatchPtr > FaceLandmarksBatchFuture
Common alias for IFaceLandmarksDetector asynchronous interface.
Definition: IFaceLandmarksDetector.h:145
fsdk::IFaceLandmarksDetector::detectLandmarks68
virtual Result< FSDKError > detectLandmarks68(const Image &image, Span< const Detection > detections, Span< Landmarks68 > landmarks) const noexcept=0
Detects landmarks68 in a photo.
fsdk::IFaceLandmarksDetector::detectLandmarks68
virtual ResultValue< FSDKError, Ref< IFaceLandmarksBatch > > detectLandmarks68(Span< const Image > images, Span< Span< const Detection >> detections) const noexcept=0
Detects landmarks68 on multiple images.
fsdk::IFaceLandmarksDetector::detectLandmarksAsync
virtual FaceLandmarksBatchFuture detectLandmarksAsync(Span< const Image > images, Span< Span< const Detection >> detections, DetectionType detectionType) const =0
Asynchronously detects landmarks5 and/or landmarks68 on multiple images.
fsdk::DetectionType
DetectionType
Detection type enumeration.
Definition: IDetector.h:59
fsdk::IFaceLandmarksDetector::validate
virtual Result< FSDKError > validate(const Image &images, Span< const Detection > detections, Span< Result< FSDKError >> errors) const noexcept=0
Validates input of frame and detections in a single function call.
fsdk::Result
A structure that encapsulates an action result enumeration.
Definition: Result.h:27
fsdk::IFaceLandmarksDetector
Definition: IFaceLandmarksDetector.h:23
fsdk::Image
Image.
Definition: Image.h:38
fsdk::IFaceLandmarksDetector::detectLandmarks5
virtual Result< FSDKError > detectLandmarks5(const Image &image, Span< const Detection > detections, Span< Landmarks5 > landmarks) const noexcept=0
Detects landmarks5 in a photo.
fsdk::IRefCounted
Base strong reference counted object interface.
Definition: IRefCounted.h:37
fsdk::IFaceLandmarksDetector::validate
virtual Result< FSDKError > validate(Span< const Image > images, Span< Span< const Detection >> detections, DetectionType detectionType, Span< Span< Result< FSDKError >>> errors) const noexcept=0
Validates frames, detections, detectionType in a single function call.
fsdk::ResultValue
Addon for Result to output some value aside the result. Specialization for copiable types.
Definition: ResultValue.h:21