You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.2 KiB

1 year ago
  1. /**
  2. * @file FaceEngine.h
  3. * @brief Face detection, analyzing and recognition SDK interfaces, AIO public header.
  4. * @copyright VisionLabs LLC
  5. * @date 25.06.2014
  6. * */
  7. #pragma once
  8. /**
  9. * @mainpage LUNA SDK
  10. * @section IntroSection Introduction
  11. * Welcome to the FaceEngine reference manual! This documentations covers all public interfaces and types.
  12. *
  13. * \b Advanced \b usage
  14. * Advanced usage is covered in the Face Engine handbook. Please contact us via e-mail: info@visionlabs.ru
  15. * if you haven't got one.
  16. *
  17. * \b Example \b code
  18. * Examples located at /examples folder of LUNA SDK package.
  19. *
  20. * @section StructureSection Structure
  21. * LUNA SDK consists of the following modules:
  22. * \li Detectors: detect faces on images, and find landmarks on it
  23. * \li Warper: normalize face position, scale and orientation by detection and landmarks.
  24. * \li Estimators: estimate various properties of images such as blurriness.
  25. * \li Descriptors: facilities to create and match face templates (aka descriptors).
  26. * */
  27. #include <fsdk/IFaceEngineMobile.h>
  28. namespace fsdk {
  29. using FaceEngineType = IFaceEngineMobile;
  30. using FaceEnginePtrType = IFaceEngineMobilePtr;
  31. }