Face Engine SDK  5.21.0
A face detection, recognition and tracking engine.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
IHumanWarper.h
Go to the documentation of this file.
1 #pragma once
2 
10 #include <fsdk/FSDKError.h>
11 #include <fsdk/IRefCounted.h>
12 #include <fsdk/Types/Detection.h>
13 #include <fsdk/Types/Image.h>
14 #include <fsdk/Types/Ref.h>
15 #include <fsdk/Types/Span.h>
16 
17 namespace fsdk {
18 
19 #ifndef DOXYGEN_SHOULD_SKIP_THIS
20  DECLARE_SMARTPTR(IHumanWarper);
21 #endif
22 
41  virtual Result<FSDKError>
42  warp(const Image image, const Detection& detection, Image& transformedImage) const noexcept = 0;
43 
63  virtual Result<FSDKError> warp(
64  Span<const Image> images,
65  Span<const Detection> detections,
66  Span<Image> transformedImages) const noexcept = 0;
67  };
68 
69 } // namespace fsdk
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:56
A structure that encapsulates an action result enumeration.
Definition: Result.h:27
Common SDK error codes.
Base strong reference counted object interface.
Definition: IRefCounted.h:37
virtual Result< FSDKError > warp(const Image image, const Detection &detection, Image &transformedImage) const noexcept=0
Warp human detection.
Image.
Definition: Image.h:38
Human detection area warper interface.
Definition: IHumanWarper.h:27
Detection structure. Stores a detected bounding box within a source image rect.
Definition: Detection.h:10
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.