Face Engine SDK 5.25.0
A face detection, recognition and tracking engine.
Loading...
Searching...
No Matches
IResultBatch.h
1#pragma once
2
3#include <cstddef>
4#include <fsdk/IRefCounted.h>
5#include <fsdk/Types/Span.h>
6
7namespace 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
16} // namespace fsdk
Span. @detail Not owning data view. It incapsulated pointer to the continuous array with one or more ...
Definition Span.h:14
SDK namespace.
Definition IAGSEstimator.h:8
Base strong reference counted object interface.
Definition IRefCounted.h:37
Definition IResultBatch.h:10