inference.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  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-29 17:14:59
  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 "recorder.h"
  39. #include <mutex>
  40. #include <cuda_runtime.h>
  41. #include <map>
  42. #include <queue>
  43. #include <vector>
  44. // opencv
  45. #include <opencv2/core.hpp>
  46. #include <opencv2/videoio.hpp>
  47. #include <opencv2/highgui.hpp>
  48. #include <opencv2/imgproc.hpp>
  49. #include <opencv2/imgproc/types_c.h>
  50. #include <list>
  51. using namespace std;
  52. namespace MIVA{
  53. // 基于Deepstream
  54. class Inference
  55. {
  56. private:
  57. // Deepstream
  58. GMainLoop *loop = NULL;
  59. GstElement *pipeline = NULL,*streammux =NULL, *sink = NULL, *pgie = NULL,
  60. *queue1, *queue2, *queue3, *queue4, *queue5, *nvvidconv = NULL,
  61. *nvosd = NULL, *tiler = NULL;
  62. GstElement *transform = NULL;
  63. GstBus *bus = NULL;
  64. guint bus_watch_id;
  65. GstPad *pgie_src_pad = NULL;
  66. GstPad *tiler_sink_pad = NULL;
  67. guint tiler_rows, tiler_columns;
  68. guint pgie_batch_size;
  69. public:
  70. std::shared_ptr<std::vector<DataSource>> m_DataList = NULL;
  71. std::shared_ptr<InferInfo> m_InferInfo = nullptr;
  72. std::shared_ptr<recorder> m_recorder = nullptr;
  73. /**
  74. * @description: 创建对象
  75. * @param {*}
  76. * @return {*} 智能指针
  77. * @author: lishengyin
  78. */
  79. static std::shared_ptr<Inference> CreateNew();
  80. Inference();
  81. ~Inference();
  82. public:
  83. /**
  84. * @description: 推理模块初始化
  85. * @param {vector<DataSource>} DataList 数据源集合
  86. * @return {*}
  87. * @author: lishengyin
  88. */
  89. int32_t Init();
  90. /**
  91. * @description: 释放数据
  92. * @param {*}
  93. * @return {*}
  94. * @author: lishengyin
  95. */
  96. void Destory();
  97. /**
  98. * @description: 准备任务
  99. * @param {*}
  100. * @return {*}
  101. * @author: lishengyin
  102. */
  103. void ReadyTask();
  104. /**
  105. * @description: 启动任务
  106. * @param {*}
  107. * @return {*}
  108. * @author: lishengyin
  109. */
  110. int32_t StartTask();
  111. /**
  112. * @description: 暂停任务
  113. * @param {*}
  114. * @return {*}
  115. * @author: lishengyin
  116. */
  117. void PauseTask();
  118. /**
  119. * @description: 停止任务
  120. * @param {*}
  121. * @return {*}
  122. * @author: lishengyin
  123. */
  124. void StopTask();
  125. /**
  126. * @description: 重启任务
  127. * @param {*}
  128. * @return {*}
  129. * @author: lishengyin
  130. */
  131. int32_t RestartTask();
  132. public:
  133. /**
  134. * @description: 获取推理结果
  135. * @param {GstPad *} pad
  136. * @param {GstPadProbeInfo *} info
  137. * @param {gpointer} u_data
  138. * @return {*}
  139. * @author: lishengyin
  140. */
  141. static GstPadProbeReturn pgie_src_pad_buffer_probe(GstPad * pad, GstPadProbeInfo * info, gpointer u_data);
  142. static GstPadProbeReturn tiler_sink_pad_buffer_probe (GstPad * pad, GstPadProbeInfo * probe_info, gpointer u_data);
  143. /**
  144. * @description: 监听bus
  145. * @param {GstBus *} bus
  146. * @param {GstMessage *} msg
  147. * @param {gpointer} data
  148. * @return {*}
  149. * @author: lishengyin
  150. */
  151. static gboolean bus_call (GstBus * bus, GstMessage * msg, gpointer data);
  152. /**
  153. * @description: 解码模块监听child_added
  154. * @param {*}
  155. * @return {*}
  156. * @author: lishengyin
  157. */
  158. static void decodebin_child_added (GstChildProxy * child_proxy, GObject * object,
  159. gchar * name, gpointer user_data);
  160. /**
  161. * @description: 创建解码bin
  162. * @param {guint} index
  163. * @param {gchar *} filename
  164. * @return {*}
  165. * @author: lishengyin
  166. */
  167. static GstElement * create_uridecode_bin (guint index, gchar * filename);
  168. /**
  169. * @description: 解码模块监听pad-added
  170. * @param {GstElement *} decodebin
  171. * @param {GstPad *} pad
  172. * @param {gpointer} data
  173. * @return {*}
  174. * @author: lishengyin
  175. */
  176. static void cb_newpad (GstElement * decodebin, GstPad * pad, gpointer data);
  177. /**
  178. * @description: 判断点是否在区域内
  179. * @param {Point} p
  180. * @param {int} nCount
  181. * @return {*}
  182. */
  183. static int PtInPolygon (Point p, vector<Point>& ptPolygon, int nCount);
  184. /**
  185. * @description: 添加数据源
  186. * @param {int} source_Id 数据源ID
  187. * @param {string} uri 数据源Url
  188. * @return {*} 是否添加成功
  189. * @author: lishengyin
  190. */
  191. gboolean add_sources (int source_Id, std::string uri);
  192. /**
  193. * @description: 删除数据源
  194. * @param {gint} source_id
  195. * @return {*}
  196. * @author: lishengyin
  197. */
  198. void stop_release_source (gint source_id);
  199. /**
  200. * @description: 修改数据源地址
  201. * @param {GstElement} *source_bin
  202. * @param {string} uri
  203. * @return {*}
  204. */
  205. void ModifyUri(GstElement *source_bin, std::string uri);
  206. /**
  207. * @description: 释放元素
  208. * @param {GstElement} *source_bin
  209. * @return {*}
  210. */
  211. void FreeElement(int source_Id,GstElement *source_bin);
  212. /**
  213. * @description: 添加数据源
  214. * @param {int} sourceId
  215. * @return {*}
  216. */
  217. void AddSources(int sourceId);
  218. };
  219. }