Face Engine SDK  4.7.0
A face detection, recognition and tracking engine.
IResultBatch.h
1 #pragma once
2 
3 #include <fsdk/Types/Span.h>
4 #include <fsdk/IRefCounted.h>
5 #include <cstddef>
6 
7 namespace fsdk {
8 
9  template <typename T>
10  struct IResultBatch : public IRefCounted{
11  public:
12  virtual Span<T> getResults(size_t index = 0) const = 0;
13  virtual size_t getSize() const = 0;
14 
15  virtual ~IResultBatch() = default;
16  };
17 
18 }
fsdk::Span
Span. @detail Not owning data view. It incapsulated pointer to the continuous array with one or more ...
Definition: Span.h:14
fsdk
SDK namespace.
Definition: IAGSEstimator.h:8
fsdk::IResultBatch
Definition: IResultBatch.h:10
fsdk::IRefCounted
Base strong reference counted object interface.
Definition: IRefCounted.h:36