This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TDA2EXEVM: How can I train the dataset of traffic sign with objSubType?

Part Number: TDA2EXEVM

Hi,

In TIDL_OD demo, the target recognition is classified as follows:

typedef enum
{
    TI_OD_PEDESTRIAN = 0,
    TI_OD_TRAFFIC_SIGN,
    TI_OD_VEHICLE,
    TI_OD_MAX_OBJECTS
} TI_OD_ObjectType;

I am now have a car and traffic sign(only speed limit sign 30,40,50,60,80,100) recognition task, and My classification is as follows:

But there are objSubType in the property list as follows:

How do I attribute my speed limit sign classification to TSR?

typedef struct
{
uint32_t objTag;
uint32_t objType;
uint32_t objSubType;
uint32_t xPos;
uint32_t yPos;
uint32_t objWidth;
uint32_t objHeight;
float    objScore;
float    objScale;
float    reserved0;
float    reserved1;
float    reserved2;
} TI_OD_objectDescriptor;