hi,
how can I save osd to file by unsing deepstream-app?
Bese wishes
hi,
how can I save osd to file by unsing deepstream-app?
Bese wishes
Open “gie-kitti-output-dir” in config
You can check the code in deepstream_app.c
for_each_meta_get_kitti() {
....
g_snprintf (bbox_file, sizeof (bbox_file) - 1,
"%s/%02u_%03u_%06lu.txt", appCtx->config.bbox_dir_path,
appCtx->index, stream_id,
streamMeta->stream_frame_num[batch_id]);
....
fprintf (bbox_params_dump_file,
"%s 0.0 0 0.0 %d.00 %d.00 %d.00 %d.00 0.0 0.0 0.0 0.0 0.0 0.0 0.0\n",
text, left, top, right, bottom);
}