Face Engine SDK
5.23.1
A face detection, recognition and tracking engine.
|
00001 #pragma once 00002 00003 #include <fsdk/Optional.h> 00004 #include <fsdk/Types/Detection.h> 00005 #include <fsdk/Types/Image.h> 00006 00007 namespace fsdk { 00008 00009 struct Human { 00010 typedef float ElementType; 00011 00012 fsdk::Image img; 00013 fsdk::Detection detection; 00014 00015 bool isValid() const { 00016 return detection.isValid() && img.isValid(); 00017 } 00018 00019 explicit Human() = default; 00020 }; 00021 } // namespace fsdk