blob: d85f67b7a0eaf2d6d070cc9cc670dd7c03a7e6a0 [file]
R"(
#ifndef ARM_COMPUTE_TYPES_H
#define ARM_COMPUTE_TYPES_H
typedef struct Coordinates2D
{
int x;
int y;
} Coordinates2D;
typedef struct Keypoint
{
int x;
int y;
float strength;
float scale;
float orientation;
int tracking_status;
float error;
} Keypoint;
typedef struct DetectionWindow
{
ushort x;
ushort y;
ushort width;
ushort height;
ushort idx_class;
float score;
} DetectionWindow;
#endif )"