Face Engine SDK  5.23.1
A face detection, recognition and tracking engine.
include/fsdk/IPointBatch.h
00001 #pragma once
00002 
00003 #include <fsdk/IRefCounted.h>
00004 #include <fsdk/Types/Ref.h>
00005 #include <fsdk/Types/Span.h>
00006 #include <fsdk/Types/Vector2.h>
00007 
00008 namespace fsdk {
00009 
00010 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00011     DECLARE_SMARTPTR(IPointBatch);
00012 #endif
00013 
00017     struct IPointBatch : public IRefCounted {
00018 
00023         virtual size_t getSize() const noexcept = 0;
00024 
00030         virtual Span<const Point2i> getPoints() const noexcept = 0;
00031     };
00032 
00033 } // namespace fsdk
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines