Face Engine SDK
5.23.1
A face detection, recognition and tracking engine.
|
00001 #pragma once 00002 00003 #include <cstddef> 00004 #include <fsdk/IRefCounted.h> 00005 #include <fsdk/Types/Span.h> 00006 00007 namespace fsdk { 00008 00009 template <typename T> 00010 struct IResultBatch : public IRefCounted { 00011 public: 00012 virtual Span<T> getResults(size_t index = 0) const = 0; 00013 virtual size_t getSize() const = 0; 00014 }; 00015 00016 } // namespace fsdk