vitis::ai::FaceFeatureFloatResult - 3.0 English

Vitis AI Library User Guide (UG1354)

Document ID
UG1354
Release Date
2023-01-12
Version
3.0 English
The result of FaceFeature . It is a 512 dimensions vector, float value.

Declaration

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

} vitis::ai::FaceFeatureFloatResult;
Table 1. Structure vitis::ai::FaceFeatureFloatResult Member Description
Member Description
vector_t The 512 dimensions vector.
width Width of an input image.
height Height of an input image.
feature A vector of 512 float values.