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