|
@@ -4,7 +4,7 @@
|
|
|
* @Autor: lishengyin
|
|
|
* @Date: 2021-10-13 09:35:37
|
|
|
* @LastEditors: lishengyin
|
|
|
- * @LastEditTime: 2021-10-14 15:12:36
|
|
|
+ * @LastEditTime: 2021-10-15 15:42:42
|
|
|
*/
|
|
|
#include "inference.h"
|
|
|
|
|
@@ -56,11 +56,11 @@ namespace MIVA{
|
|
|
std::shared_ptr<Inference> infer = NULL;
|
|
|
ThreadPool pool(1,ThreadPool::PRIORITY_HIGHEST, false);
|
|
|
/**
|
|
|
- * @description: 创建对象 单例
|
|
|
+ * @description: 创建对象
|
|
|
* @param {*}
|
|
|
- * @return {*}
|
|
|
+ * @return {*} 智能指针
|
|
|
* @author: lishengyin
|
|
|
- */
|
|
|
+ */
|
|
|
std::shared_ptr<Inference> Inference::CreateNew()
|
|
|
{
|
|
|
if(infer == NULL) infer = std::make_shared<Inference>();
|
|
@@ -70,22 +70,19 @@ namespace MIVA{
|
|
|
{
|
|
|
|
|
|
}
|
|
|
-
|
|
|
Inference::~Inference()
|
|
|
{
|
|
|
Destory();
|
|
|
- }
|
|
|
+ }
|
|
|
/**
|
|
|
* @description: 推理模块初始化
|
|
|
- * @param {vector<DataSource>} DataList
|
|
|
- * @return {*}
|
|
|
+ * @param {vector<DataSource>} DataList 数据源集合
|
|
|
+ * @return {*} 是否初始化成功
|
|
|
* @author: lishengyin
|
|
|
- */
|
|
|
+ */
|
|
|
int32_t Inference::Init(vector<DataSource> DataList)
|
|
|
{
|
|
|
// init
|
|
|
- this->loop = g_main_loop_new (NULL, FALSE);
|
|
|
-
|
|
|
// 创建管道
|
|
|
this->pipeline = gst_pipeline_new("dstest3-pipeline");
|
|
|
|
|
@@ -182,7 +179,7 @@ namespace MIVA{
|
|
|
|
|
|
|
|
|
this->bus = gst_pipeline_get_bus (GST_PIPELINE (this->pipeline));
|
|
|
- this->bus_watch_id = gst_bus_add_watch (this->bus, bus_call, this->loop);
|
|
|
+ this->bus_watch_id = gst_bus_add_watch (this->bus, bus_call, NULL);
|
|
|
gst_object_unref (this->bus);
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (this->pipeline), this->queue1, this->pgie, this->queue2, this->tiler, this->queue3,
|
|
@@ -205,23 +202,22 @@ namespace MIVA{
|
|
|
return OK;
|
|
|
}
|
|
|
/**
|
|
|
- * @description: deepstream配置为准备状态
|
|
|
+ * @description: 准备任务
|
|
|
* @param {*}
|
|
|
* @return {*}
|
|
|
* @author: lishengyin
|
|
|
- */
|
|
|
+ */
|
|
|
void Inference::ReadyTask()
|
|
|
{
|
|
|
InfoL << "Now ReadyTask";
|
|
|
gst_element_set_state(this->pipeline, GST_STATE_READY);
|
|
|
- g_main_loop_run(this->loop);
|
|
|
}
|
|
|
/**
|
|
|
* @description: 启动任务
|
|
|
* @param {*}
|
|
|
* @return {*}
|
|
|
* @author: lishengyin
|
|
|
- */
|
|
|
+ */
|
|
|
void Inference::StartTask()
|
|
|
{
|
|
|
static int ret = 0;
|
|
@@ -232,17 +228,16 @@ namespace MIVA{
|
|
|
ret++;
|
|
|
pool.async([&](){
|
|
|
gst_element_set_state(this->pipeline, GST_STATE_PLAYING);
|
|
|
- g_main_loop_run(this->loop);
|
|
|
});
|
|
|
pool.start();
|
|
|
}
|
|
|
}
|
|
|
/**
|
|
|
- * @description: 暂停各数据源的任务
|
|
|
+ * @description: 暂停任务
|
|
|
* @param {*}
|
|
|
* @return {*}
|
|
|
* @author: lishengyin
|
|
|
- */
|
|
|
+ */
|
|
|
void Inference::PauseTask()
|
|
|
{
|
|
|
InfoL << "Now Pause";
|
|
@@ -254,11 +249,11 @@ namespace MIVA{
|
|
|
}
|
|
|
}
|
|
|
/**
|
|
|
- * @description: 停止个数据源的任务
|
|
|
+ * @description: 停止任务
|
|
|
* @param {*}
|
|
|
* @return {*}
|
|
|
* @author: lishengyin
|
|
|
- */
|
|
|
+ */
|
|
|
void Inference::StopTask()
|
|
|
{
|
|
|
int sourceId = 0;
|
|
@@ -274,7 +269,7 @@ namespace MIVA{
|
|
|
NoticeCenter::Instance().emitEvent(NOTICE_RELEASE);
|
|
|
}
|
|
|
/**
|
|
|
- * @description: 重启各数据源任务
|
|
|
+ * @description: 重启任务
|
|
|
* @param {*}
|
|
|
* @return {*}
|
|
|
* @author: lishengyin
|
|
@@ -295,20 +290,25 @@ namespace MIVA{
|
|
|
* @param {*}
|
|
|
* @return {*}
|
|
|
* @author: lishengyin
|
|
|
- */
|
|
|
+ */
|
|
|
void Inference::Destory()
|
|
|
{
|
|
|
DebugL << "Returned, stopping playback";
|
|
|
gst_element_set_state(this->pipeline, GST_STATE_NULL);
|
|
|
- g_main_loop_quit (this->loop);
|
|
|
DebugL << "Deleting pipeline";
|
|
|
gst_object_unref(GST_OBJECT(this->pipeline));
|
|
|
g_source_remove(this->bus_watch_id);
|
|
|
- g_main_loop_unref(this->loop);
|
|
|
g_mutex_clear (&eos_lock);
|
|
|
infer = NULL;
|
|
|
}
|
|
|
-
|
|
|
+ /**
|
|
|
+ * @description: 获取推理结果
|
|
|
+ * @param {GstPad *} pad 推理模块的pad
|
|
|
+ * @param {GstPadProbeInfo *} info 推理结果数据集
|
|
|
+ * @param {gpointer} u_data NULL
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
GstPadProbeReturn
|
|
|
Inference::tiler_src_pad_buffer_probe(GstPad * pad, GstPadProbeInfo * info, gpointer u_data)
|
|
|
{
|
|
@@ -333,47 +333,24 @@ namespace MIVA{
|
|
|
num++;
|
|
|
}
|
|
|
}
|
|
|
- //画左上角的统计信息
|
|
|
- // 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);
|
|
|
-
|
|
|
- // snprintf(txt_params->display_text, MAX_DISPLAY_LEN, "Number of people: %d \n", num);
|
|
|
-
|
|
|
// 推理广播
|
|
|
NoticeCenter::Instance().emitEvent(NOTICE_INFER,frame_meta->source_id, num);
|
|
|
-
|
|
|
- // txt_params->x_offset = 30;
|
|
|
- // txt_params->y_offset = 30;
|
|
|
-
|
|
|
- // /* Font , font-color and font-size */
|
|
|
- // txt_params->font_params.font_name = (char *)"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;
|
|
|
-
|
|
|
- //nvds_add_display_meta_to_frame(frame_meta, display_meta);
|
|
|
}
|
|
|
return GST_PAD_PROBE_OK;
|
|
|
}
|
|
|
-
|
|
|
+ /**
|
|
|
+ * @description: 监听bus
|
|
|
+ * @param {GstBus *} bus Deepstream的bus
|
|
|
+ * @param {GstMessage *} msg 传递到bus中的msg
|
|
|
+ * @param {gpointer} data NULL
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
gboolean Inference::bus_call (GstBus * bus, GstMessage * msg, gpointer data)
|
|
|
{
|
|
|
- GMainLoop *loop = (GMainLoop *) data;
|
|
|
switch (GST_MESSAGE_TYPE (msg)) {
|
|
|
case GST_MESSAGE_EOS:
|
|
|
InfoL << "End of stream";
|
|
|
- g_main_loop_quit (loop);
|
|
|
break;
|
|
|
case GST_MESSAGE_WARNING:
|
|
|
{
|
|
@@ -396,7 +373,6 @@ namespace MIVA{
|
|
|
ErrorL << "Error details:" << debug;
|
|
|
g_free (debug);
|
|
|
g_error_free (error);
|
|
|
- g_main_loop_quit (loop);
|
|
|
break;
|
|
|
}
|
|
|
#ifndef PLATFORM_TEGRA
|
|
@@ -416,7 +392,12 @@ namespace MIVA{
|
|
|
}
|
|
|
return TRUE;
|
|
|
}
|
|
|
-
|
|
|
+ /**
|
|
|
+ * @description: 解码模块监听child_added
|
|
|
+ * @param {GstChildProxy *} 参数
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
void Inference::decodebin_child_added (GstChildProxy * child_proxy, GObject * object,
|
|
|
gchar * name, gpointer user_data)
|
|
|
{
|
|
@@ -437,8 +418,8 @@ namespace MIVA{
|
|
|
}
|
|
|
}
|
|
|
/**
|
|
|
- * @description: 释放数据源
|
|
|
- * @param {gint} source_id
|
|
|
+ * @description: 删除数据源
|
|
|
+ * @param {gint} source_id 数据源ID
|
|
|
* @return {*}
|
|
|
* @author: lishengyin
|
|
|
*/
|
|
@@ -485,7 +466,14 @@ namespace MIVA{
|
|
|
}
|
|
|
g_mutex_unlock (&eos_lock);
|
|
|
}
|
|
|
-
|
|
|
+ /**
|
|
|
+ * @description: 解码模块监听pad-added
|
|
|
+ * @param {GstElement *} decodebin
|
|
|
+ * @param {GstPad *} pad
|
|
|
+ * @param {gpointer} data
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
void Inference::cb_newpad (GstElement * decodebin, GstPad * pad, gpointer data)
|
|
|
{
|
|
|
GstCaps *caps = gst_pad_query_caps (pad, NULL);
|
|
@@ -498,7 +486,6 @@ namespace MIVA{
|
|
|
gchar pad_name[16] = { 0 };
|
|
|
GstPad *sinkpad = NULL;
|
|
|
g_snprintf (pad_name, 15, "sink_%u", source_id);
|
|
|
-
|
|
|
sinkpad = gst_element_get_static_pad (g_streammux, pad_name);
|
|
|
if(sinkpad == NULL) sinkpad = gst_element_get_request_pad (g_streammux, pad_name);
|
|
|
if (gst_pad_link (pad, sinkpad) != GST_PAD_LINK_OK) {
|
|
@@ -509,14 +496,13 @@ namespace MIVA{
|
|
|
gst_object_unref (sinkpad);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
/**
|
|
|
- * @description: 创建数据源element
|
|
|
- * @param {guint} index
|
|
|
- * @param {gchar *} filename
|
|
|
- * @return {*}
|
|
|
+ * @description: 创建解码bin
|
|
|
+ * @param {guint} index 数据源索引
|
|
|
+ * @param {gchar *} filename 数据源Url
|
|
|
+ * @return {GstElement *} 返回解码模块bin
|
|
|
* @author: lishengyin
|
|
|
- */
|
|
|
+ */
|
|
|
GstElement* Inference::create_uridecode_bin (guint index, gchar * filename)
|
|
|
{
|
|
|
GstElement *bin = NULL;
|
|
@@ -537,12 +523,12 @@ namespace MIVA{
|
|
|
return bin;
|
|
|
}
|
|
|
/**
|
|
|
- * @description: 动态增加数据源
|
|
|
- * @param {int} source_Id
|
|
|
- * @param {string} uri
|
|
|
- * @return {*}
|
|
|
+ * @description: 添加数据源
|
|
|
+ * @param {int} source_Id 数据源ID
|
|
|
+ * @param {string} uri 数据源Url
|
|
|
+ * @return {*} 是否添加成功
|
|
|
* @author: lishengyin
|
|
|
- */
|
|
|
+ */
|
|
|
gboolean Inference::add_sources (int source_Id, std::string uri)
|
|
|
{
|
|
|
g_mutex_lock (&eos_lock);
|