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
IPointBatch.h
1 #pragma once
2 
3 #include <fsdk/IRefCounted.h>
4 #include <fsdk/Types/Ref.h>
5 #include <fsdk/Types/Span.h>
6 #include <fsdk/Types/Vector2.h>
7 
8 namespace fsdk {
9 
10 #ifndef DOXYGEN_SHOULD_SKIP_THIS
11  DECLARE_SMARTPTR(IPointBatch);
12 #endif
13 
17  struct IPointBatch : public IRefCounted {
18 
23  virtual size_t getSize() const noexcept = 0;
24 
30  virtual Span<const Point2i> getPoints() const noexcept = 0;
31  };
32 
33 } // namespace fsdk
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:56
virtual Span< const Point2i > getPoints() const noexcept=0
Returns Points Span.
Points result batch interface.
Definition: IPointBatch.h:17
Base strong reference counted object interface.
Definition: IRefCounted.h:37
virtual size_t getSize() const noexcept=0
Returns size.
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.