inference.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  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-31 13:44:18
  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, *nvvidconv = NULL,
  61. *nvosd = NULL;
  62. GstBus *bus = NULL;
  63. guint bus_watch_id;
  64. GstPad *pgie_src_pad = NULL;
  65. GstPad *tiler_sink_pad = NULL;
  66. guint tiler_rows, tiler_columns;
  67. guint pgie_batch_size;
  68. public:
  69. std::shared_ptr<std::vector<DataSource>> m_DataList = NULL;
  70. std::shared_ptr<InferInfo> m_InferInfo = nullptr;
  71. std::shared_ptr<recorder> m_recorder = nullptr;
  72. bool Play = false;
  73. bool enable = false;
  74. /**
  75. * @description: 创建对象
  76. * @param {*}
  77. * @return {*} 智能指针
  78. * @author: lishengyin
  79. */
  80. static std::shared_ptr<Inference> CreateNew();
  81. Inference();
  82. ~Inference();
  83. public:
  84. /**
  85. * @description: 推理模块初始化
  86. * @param {vector<DataSource>} DataList 数据源集合
  87. * @return {*}
  88. * @author: lishengyin
  89. */
  90. int32_t Init();
  91. /**
  92. * @description: 释放数据
  93. * @param {*}
  94. * @return {*}
  95. * @author: lishengyin
  96. */
  97. void Destory();
  98. /**
  99. * @description: 准备任务
  100. * @param {*}
  101. * @return {*}
  102. * @author: lishengyin
  103. */
  104. void ReadyTask();
  105. /**
  106. * @description: 启动任务
  107. * @param {*}
  108. * @return {*}
  109. * @author: lishengyin
  110. */
  111. int32_t StartTask();
  112. /**
  113. * @description: 暂停任务
  114. * @param {*}
  115. * @return {*}
  116. * @author: lishengyin
  117. */
  118. void PauseTask();
  119. /**
  120. * @description: 停止任务
  121. * @param {*}
  122. * @return {*}
  123. * @author: lishengyin
  124. */
  125. void StopTask();
  126. /**
  127. * @description: 重启任务
  128. * @param {*}
  129. * @return {*}
  130. * @author: lishengyin
  131. */
  132. int32_t RestartTask();
  133. /**
  134. * @description:记录
  135. * @param {*}
  136. * @return {*}
  137. */
  138. int32_t Recorder();
  139. public:
  140. /**
  141. * @description: 获取推理结果
  142. * @param {GstPad *} pad
  143. * @param {GstPadProbeInfo *} info
  144. * @param {gpointer} u_data
  145. * @return {*}
  146. * @author: lishengyin
  147. */
  148. static GstPadProbeReturn tiler_sink_pad_buffer_probe (GstPad * pad, GstPadProbeInfo * probe_info, gpointer u_data);
  149. /**
  150. * @description: 监听bus
  151. * @param {GstBus *} bus
  152. * @param {GstMessage *} msg
  153. * @param {gpointer} data
  154. * @return {*}
  155. * @author: lishengyin
  156. */
  157. static gboolean bus_call (GstBus * bus, GstMessage * msg, gpointer data);
  158. /**
  159. * @description: 解码模块监听child_added
  160. * @param {*}
  161. * @return {*}
  162. * @author: lishengyin
  163. */
  164. static void decodebin_child_added (GstChildProxy * child_proxy, GObject * object,
  165. gchar * name, gpointer user_data);
  166. /**
  167. * @description: 创建解码bin
  168. * @param {guint} index
  169. * @param {gchar *} filename
  170. * @return {*}
  171. * @author: lishengyin
  172. */
  173. static GstElement * create_uridecode_bin (guint index, gchar * filename);
  174. /**
  175. * @description: 解码模块监听pad-added
  176. * @param {GstElement *} decodebin
  177. * @param {GstPad *} pad
  178. * @param {gpointer} data
  179. * @return {*}
  180. * @author: lishengyin
  181. */
  182. static void cb_newpad (GstElement * decodebin, GstPad * pad, gpointer data);
  183. /**
  184. * @description: 判断点是否在区域内
  185. * @param {Point} p
  186. * @param {int} nCount
  187. * @return {*}
  188. */
  189. static int PtInPolygon (Point p, vector<Point>& ptPolygon, int nCount);
  190. /**
  191. * @description: 添加数据源
  192. * @param {int} source_Id 数据源ID
  193. * @param {string} uri 数据源Url
  194. * @return {*} 是否添加成功
  195. * @author: lishengyin
  196. */
  197. GstElement* add_sources (int source_Id, std::string uri);
  198. /**
  199. * @description: 删除数据源
  200. * @param {gint} source_id
  201. * @return {*}
  202. * @author: lishengyin
  203. */
  204. void stop_release_source (gint source_id);
  205. /**
  206. * @description: 修改数据源地址
  207. * @param {GstElement} *source_bin
  208. * @param {string} uri
  209. * @return {*}
  210. */
  211. void ModifyUri(GstElement *source_bin, std::string uri);
  212. /**
  213. * @description: 释放元素
  214. * @param {GstElement} *source_bin
  215. * @return {*}
  216. */
  217. void FreeElement(int source_Id,GstElement *source_bin);
  218. /**
  219. * @description: 添加数据源
  220. * @param {int} sourceId
  221. * @return {*}
  222. */
  223. void AddSources(int sourceId);
  224. void SetBatch(int num);
  225. };
  226. }