![]()  | 
  
  
  
    Face Engine SDK
    5.25.0
    
   A face detection, recognition and tracking engine. 
   | 
  
  
  
 
00001 #pragma once 00002 00003 #include <fsdk/Types/Vector2.h> 00004 00005 namespace fsdk { 00006 00012 struct Transformation { 00013 Vector2<float> centerP = {0, 0}; // From 0, scaled 00014 float angleDeg = 0; 00015 float scale = 0; 00016 Vector2<int> detectionTopLeft = {0, 0}; // From 0, original size 00017 00018 bool isValid = false; 00019 }; 00020 00021 } // namespace fsdk