首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >[deepstream][原创]更改deepstream_test1_app在弹出视频上画一条线条

[deepstream][原创]更改deepstream_test1_app在弹出视频上画一条线条

作者头像
云未归来
发布2025-07-18 17:44:30
发布2025-07-18 17:44:30
7500
代码可运行
举报
运行总次数:0
代码可运行

要求:比如利用deepstream做车流量统计时候,我们需要画条线表明是否在线以内以外。因此需要在视频中加条线

关键代码:

代码语言:javascript
代码运行次数:0
运行
复制
    display_meta = nvds_acquire_display_meta_from_pool(batch_meta);
    NvOSD_TextParams *txt_params = &display_meta->text_params[0];
    display_meta->num_labels = 1;
    txt_params->display_text = (char *)g_malloc0(MAX_DISPLAY_LEN);
    offset = snprintf(txt_params->display_text, MAX_DISPLAY_LEN, "Person = %d ", person_count);
    offset = snprintf(txt_params->display_text + offset , MAX_DISPLAY_LEN, "Vehicle = %d ", vehicle_count);

    /* Now set the offsets where the string should appear */
    txt_params->x_offset = 10;
    txt_params->y_offset = 12;

    /* Font , font-color and font-size */
    txt_params->font_params.font_name = "Serif";
    txt_params->font_params.font_size = 10;
    txt_params->font_params.font_color.red = 1.0;
    txt_params->font_params.font_color.green = 1.0;
    txt_params->font_params.font_color.blue = 1.0;
    txt_params->font_params.font_color.alpha = 1.0;

    /* Text background color */
    txt_params->set_bg_clr = 1;
    txt_params->text_bg_clr.red = 0.0;
    txt_params->text_bg_clr.green = 0.0;
    txt_params->text_bg_clr.blue = 0.0;
    txt_params->text_bg_clr.alpha = 1.0;
//这个就是画线代码,我在视频中心画了一个横线条
NvOSD_LineParams *line_params  = display_meta->line_params;
display_meta->num_lines = 1;
line_params[0].x1 = 0;
line_params[0].y1 =1080/2;
line_params[0].x2 = 1920;
line_params[0].y2 = 1080/2;
line_params[0].line_width = 4;
line_params[0].line_color = (NvOSD_ColorParams){1.0, 0.0, 0.0, 0.5};





    nvds_add_display_meta_to_frame(frame_meta, display_meta);

结果图:

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2021-11-17,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档