yuweiw
3
Can you describe what the embedding results
is in detail?
I meant the embedding vector
yuweiw
5
You can refer to our deepstream\sources\apps\sample_apps\deepstream-test4
to learn how to send the message about person object.
static void
generate_event_msg_meta (gpointer data, gint class_id,
NvDsObjectMeta * obj_params)
{
....
} else if (class_id == PGIE_CLASS_ID_PERSON) {
meta->type = NVDS_EVENT_ENTRY;
meta->objType = NVDS_OBJECT_TYPE_PERSON;
meta->objClassId = PGIE_CLASS_ID_PERSON;
NvDsPersonObject *obj =
(NvDsPersonObject *) g_malloc0 (sizeof (NvDsPersonObject));
generate_person_meta (obj);
meta->extMsg = obj;
meta->extMsgSize = sizeof (NvDsPersonObject);
}
....
}