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;
| 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. |