vitis::ai::FaceFeatureFixedResult - 3.5 English

Vitis AI Library User Guide (UG1354)

Document ID
UG1354
Release Date
2023-06-29
Version
3.5 English
The result of FaceFeature . It is a 512 dimensions vector, fix point values.

Declaration

typedef struct
{
  std::array< int8_t, 512 > vector_t;
  int width;
  int height;
  float scale;
  std::unique_ptr< vector_t > feature;

} vitis::ai::FaceFeatureFixedResult;
Table 1. Structure vitis::ai::FaceFeatureFixedResult Member Description
Member Description
vector_t The 512 dimensions vector, in fix point format.
width Width of an input image.
height Height of an input image.
scale The fix point.
feature A vector of 512 fixed values.