![]()  | 
  
  
  
    Face Engine SDK
    5.25.0
    
   A face detection, recognition and tracking engine. 
   | 
  
  
  
 
  
 Public Member Functions | |
| virtual ResultValue< FSDKError,  Ref< IFaceLandmarksBatch > >  | detectLandmarks5 (Span< const Image > images, Span< Span< const Detection >> detections) const noexcept=0 | 
| Detects landmarks5 on multiple images.   | |
| virtual ResultValue< FSDKError,  Ref< IFaceLandmarksBatch > >  | detectLandmarks68 (Span< const Image > images, Span< Span< const Detection >> detections) const noexcept=0 | 
| Detects landmarks68 on multiple images.   | |
| virtual Result< FSDKError > | validate (Span< const Image > images, Span< Span< const Detection >> detections, Span< Span< Result< FSDKError >>> errors) const noexcept=0 | 
| Validates input of multiple frames in a single function call.   | |
| virtual Result< FSDKError > | detectLandmarks5 (const Image &image, Span< const Detection > detections, Span< Landmarks5 > landmarks) const noexcept=0 | 
| Detects landmarks5 in a photo.   | |
| virtual Result< FSDKError > | detectLandmarks68 (const Image &image, Span< const Detection > detections, Span< Landmarks68 > landmarks) const noexcept=0 | 
| Detects landmarks68 in a photo.   | |
| virtual Result< FSDKError > | validate (const Image &images, Span< const Detection > detections, Span< Result< FSDKError >> errors) const noexcept=0 | 
| Validates input of frame and detections in a single function call.   | |
| virtual Result< FSDKError > | validate (Span< const Image > images, Span< Span< const Detection >> detections, DetectionType detectionType, Span< Span< Result< FSDKError >>> errors) const noexcept=0 | 
| Validates frames, detections, detectionType in a single function call.   | |
| virtual FaceLandmarksBatchFuture | detectLandmarksAsync (Span< const Image > images, Span< Span< const Detection >> detections, DetectionType detectionType) const =0 | 
| Asynchronously detects landmarks5 and/or landmarks68 on multiple images.   | |
| virtual ResultValue<FSDKError, Ref<IFaceLandmarksBatch> > fsdk::IFaceLandmarksDetector::detectLandmarks5 | ( | Span< const Image > | images, | 
| Span< Span< const Detection >> | detections | ||
| ) |  const [pure virtual] | 
        
Detects landmarks5 on multiple images.
| [in] | images | span of source images. | 
| [in] | detections | span of detection coordinates in corresponding source images space from the previous frames. It is a two dimensional Span. There is one Span of Detections for each image. | 
| virtual Result<FSDKError> fsdk::IFaceLandmarksDetector::detectLandmarks5 | ( | const Image & | image, | 
| Span< const Detection > | detections, | ||
| Span< Landmarks5 > | landmarks | ||
| ) |  const [pure virtual] | 
        
Detects landmarks5 in a photo.
| [in] | image | source images. | 
| [in] | detections | input detections. | 
| [out] | landmarks | output span of landmarks5 for each detection. | 
| virtual ResultValue<FSDKError, Ref<IFaceLandmarksBatch> > fsdk::IFaceLandmarksDetector::detectLandmarks68 | ( | Span< const Image > | images, | 
| Span< Span< const Detection >> | detections | ||
| ) |  const [pure virtual] | 
        
Detects landmarks68 on multiple images.
| [in] | images | span of source images. | 
| [in] | detections | span of detection coordinates in corresponding source images space from the previous frames. It is a two dimensional Span. There is one Span of Detections for each image. | 
| virtual Result<FSDKError> fsdk::IFaceLandmarksDetector::detectLandmarks68 | ( | const Image & | image, | 
| Span< const Detection > | detections, | ||
| Span< Landmarks68 > | landmarks | ||
| ) |  const [pure virtual] | 
        
Detects landmarks68 in a photo.
| [in] | image | source images. | 
| [in] | detections | input detections. | 
| [out] | landmarks | output span of landmarks68 for each detection. | 
| virtual FaceLandmarksBatchFuture fsdk::IFaceLandmarksDetector::detectLandmarksAsync | ( | Span< const Image > | images, | 
| Span< Span< const Detection >> | detections, | ||
| DetectionType | detectionType | ||
| ) |  const [pure virtual] | 
        
Asynchronously detects landmarks5 and/or landmarks68 on multiple images.
| [in] | images | source images. | 
| [in] | detections | input detections. | 
| [in] | detectionType | type[s] of landmarks to detect, any of {DT_LANDMARKS5, DT_LANDMARKS68, DT_LANDMARKS5 | DT_LANDMARKS68} | 
| virtual Result<FSDKError> fsdk::IFaceLandmarksDetector::validate | ( | Span< const Image > | images, | 
| Span< Span< const Detection >> | detections, | ||
| Span< Span< Result< FSDKError >>> | errors | ||
| ) |  const [pure virtual] | 
        
Validates input of multiple frames in a single function call.
| [in] | images | span of source images. | 
| [in] | detections | span of detection coordinates in corresponding source images space from the previous frames. It is a two dimensional Span. There is one Span of Detections for each image. | 
| [out] | errors | output span of errors for each image. It is a two dimensional Span. There is one Span of the errors for each image. | 
| virtual Result<FSDKError> fsdk::IFaceLandmarksDetector::validate | ( | const Image & | images, | 
| Span< const Detection > | detections, | ||
| Span< Result< FSDKError >> | errors | ||
| ) |  const [pure virtual] | 
        
Validates input of frame and detections in a single function call.
| [in] | images | source image. | 
| [in] | detections | span of detection | 
| [out] | errors | output span of errors. | 
| virtual Result<FSDKError> fsdk::IFaceLandmarksDetector::validate | ( | Span< const Image > | images, | 
| Span< Span< const Detection >> | detections, | ||
| DetectionType | detectionType, | ||
| Span< Span< Result< FSDKError >>> | errors | ||
| ) |  const [pure virtual] | 
        
Validates frames, detections, detectionType in a single function call.
| [in] | images | source image. | 
| [in] | detections | span of detection | 
| [in] | detectionType | type[s] of landmarks to detect, any of {DT_LANDMARKS5, DT_LANDMARKS68, DT_LANDMARKS5 | DT_LANDMARKS68} | 
| [out] | errors | output span of errors. |