inference.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. /*
  2. * @Description: 推理模块
  3. * @Version: 1.0
  4. * @Autor: lishengyin
  5. * @Date: 2021-10-13 09:37:51
  6. * @LastEditors: lishengyin
  7. * @LastEditTime: 2021-12-06 10:49:27
  8. */
  9. #pragma once
  10. #include <iostream>
  11. #include <stdio.h>
  12. #include <string.h>
  13. #include <gst/gst.h>
  14. #include <glib.h>
  15. #include <stdio.h>
  16. #include <math.h>
  17. #include <string.h>
  18. #include <sys/time.h>
  19. #include "nvdsmeta.h"
  20. #include "gstnvdsmeta.h"
  21. #include "gst-nvmessage.h"
  22. #include "nvbufsurface.h"
  23. #include "DataSource.h"
  24. #include "InferRange.h"
  25. // ZLMediaKit
  26. #include "Util/logger.h"
  27. #include "Util/NoticeCenter.h"
  28. #include "Poller/EventPoller.h"
  29. #include "Player/PlayerProxy.h"
  30. #include "Rtmp/RtmpPusher.h"
  31. #include "Common/config.h"
  32. #include "Pusher/MediaPusher.h"
  33. #include "Extension/Frame.h"
  34. #include "Util/SqlPool.h"
  35. #include "Network/TcpClient.h"
  36. #include "Poller/Timer.h"
  37. #include "TCPClient.h"
  38. #include <mutex>
  39. #include <cuda_runtime.h>
  40. // opencv
  41. #include <opencv2/core.hpp>
  42. #include <opencv2/videoio.hpp>
  43. #include <opencv2/highgui.hpp>
  44. #include <opencv2/imgproc.hpp>
  45. #include <opencv2/imgproc/types_c.h>
  46. #include <list>
  47. using namespace std;
  48. namespace MIVA{
  49. // 基于Deepstream
  50. class Inference
  51. {
  52. private:
  53. // Deepstream
  54. GMainLoop *loop = NULL;
  55. GstElement *pipeline = NULL,*streammux =NULL, *sink = NULL, *pgie = NULL,
  56. *queue1, *queue2, *queue3, *queue4, *queue5, *nvvidconv = NULL,
  57. *nvosd = NULL, *tiler = NULL;
  58. GstElement *transform = NULL;
  59. GstBus *bus = NULL;
  60. guint bus_watch_id;
  61. GstPad *tiler_src_pad = NULL;
  62. GstPad *osd_sink_pad = NULL;
  63. guint tiler_rows, tiler_columns;
  64. guint pgie_batch_size;
  65. public:
  66. std::shared_ptr<std::vector<DataSource>> m_DataList = NULL;
  67. std::shared_ptr<InferInfo> m_InferInfo = NULL;
  68. /**
  69. * @description: 创建对象
  70. * @param {*}
  71. * @return {*} 智能指针
  72. * @author: lishengyin
  73. */
  74. static std::shared_ptr<Inference> CreateNew();
  75. Inference();
  76. ~Inference();
  77. public:
  78. /**
  79. * @description: 推理模块初始化
  80. * @param {vector<DataSource>} DataList 数据源集合
  81. * @return {*}
  82. * @author: lishengyin
  83. */
  84. int32_t Init(std::shared_ptr<InferInfo> InferInfo);
  85. /**
  86. * @description: 释放数据
  87. * @param {*}
  88. * @return {*}
  89. * @author: lishengyin
  90. */
  91. void Destory();
  92. /**
  93. * @description: 准备任务
  94. * @param {*}
  95. * @return {*}
  96. * @author: lishengyin
  97. */
  98. void ReadyTask();
  99. /**
  100. * @description: 启动任务
  101. * @param {*}
  102. * @return {*}
  103. * @author: lishengyin
  104. */
  105. int32_t StartTask();
  106. /**
  107. * @description: 暂停任务
  108. * @param {*}
  109. * @return {*}
  110. * @author: lishengyin
  111. */
  112. void PauseTask();
  113. /**
  114. * @description: 停止任务
  115. * @param {*}
  116. * @return {*}
  117. * @author: lishengyin
  118. */
  119. void StopTask();
  120. /**
  121. * @description: 重启任务
  122. * @param {*}
  123. * @return {*}
  124. * @author: lishengyin
  125. */
  126. int32_t RestartTask();
  127. public:
  128. /**
  129. * @description: 获取推理结果
  130. * @param {GstPad *} pad
  131. * @param {GstPadProbeInfo *} info
  132. * @param {gpointer} u_data
  133. * @return {*}
  134. * @author: lishengyin
  135. */
  136. static GstPadProbeReturn tiler_src_pad_buffer_probe(GstPad * pad, GstPadProbeInfo * info, gpointer u_data);
  137. static GstPadProbeReturn osd_sink_pad_buffer_probe (GstPad * pad, GstPadProbeInfo * probe_info, gpointer u_data);
  138. /**
  139. * @description: 监听bus
  140. * @param {GstBus *} bus
  141. * @param {GstMessage *} msg
  142. * @param {gpointer} data
  143. * @return {*}
  144. * @author: lishengyin
  145. */
  146. static gboolean bus_call (GstBus * bus, GstMessage * msg, gpointer data);
  147. /**
  148. * @description: 解码模块监听child_added
  149. * @param {*}
  150. * @return {*}
  151. * @author: lishengyin
  152. */
  153. static void decodebin_child_added (GstChildProxy * child_proxy, GObject * object,
  154. gchar * name, gpointer user_data);
  155. /**
  156. * @description: 创建解码bin
  157. * @param {guint} index
  158. * @param {gchar *} filename
  159. * @return {*}
  160. * @author: lishengyin
  161. */
  162. static GstElement * create_uridecode_bin (guint index, gchar * filename);
  163. /**
  164. * @description: 解码模块监听pad-added
  165. * @param {GstElement *} decodebin
  166. * @param {GstPad *} pad
  167. * @param {gpointer} data
  168. * @return {*}
  169. * @author: lishengyin
  170. */
  171. static void cb_newpad (GstElement * decodebin, GstPad * pad, gpointer data);
  172. /**
  173. * @description: 判断点是否在区域内
  174. * @param {Point} p
  175. * @param {int} nCount
  176. * @return {*}
  177. */
  178. static int PtInPolygon (Point p, vector<Point>& ptPolygon, int nCount);
  179. /**
  180. * @description: 添加数据源
  181. * @param {int} source_Id 数据源ID
  182. * @param {string} uri 数据源Url
  183. * @return {*} 是否添加成功
  184. * @author: lishengyin
  185. */
  186. gboolean add_sources (int source_Id, std::string uri);
  187. /**
  188. * @description: 删除数据源
  189. * @param {gint} source_id
  190. * @return {*}
  191. * @author: lishengyin
  192. */
  193. void stop_release_source (gint source_id);
  194. /**
  195. * @description: 修改数据源地址
  196. * @param {GstElement} *source_bin
  197. * @param {string} uri
  198. * @return {*}
  199. */
  200. void ModifyUri(GstElement *source_bin, std::string uri);
  201. /**
  202. * @description: 释放元素
  203. * @param {GstElement} *source_bin
  204. * @return {*}
  205. */
  206. void FreeElement(int source_Id,GstElement *source_bin);
  207. /**
  208. * @description: 添加数据源
  209. * @param {int} sourceId
  210. * @return {*}
  211. */
  212. void AddSources(int sourceId);
  213. };
  214. }