#ifndef _yolo_struct_h_ #define _yolo_struct_h_ typedef struct _cPOINT { int x; int y; } cPOINT; typedef struct _cRECT { int left; int top; int right; int bottom; } cRECT; typedef struct _cIMAGE{ unsigned char *data; int width; int height; int channel; } cIMAGE; typedef struct _cObjInfo { cRECT rcObj; int typ; float prob; } cObjInfo; #endif