完成多路視訊並行接入、解碼、多級推理、結構化資料分析、上報、編碼推流等過程,外掛式/pipe式程式設計風格,功能上類似英偉達的deepstream和華為的mxvision,但底層核心不依賴複雜難懂的gstreamer框架(少部分地方需要),框架主幹部分主要使用原生C++ STL實現,目標是平臺高可移植性。框架可用於:視訊結構化、以圖搜圖、目標行為分析等應用領域。
原始碼地址:https://github.com/sherlockchou86/video_pipe_c
開發環境:vs code/ubuntu 18.04/C++17/opencv 4.6/ffmpeg 3.4.8/gstreamer 1.20。之前使用wsl1/2+ubuntu22.04,但是wsl坑太多,後放棄。
如何使用
#include "VP.h" #include "../nodes/vp_file_src_node.h" #include "../nodes/infers/vp_trt_vehicle_detector.h" #include "../nodes/infers/vp_trt_vehicle_plate_detector.h" #include "../nodes/osd/vp_osd_node_v2.h" #include "../nodes/vp_screen_des_node.h" #include "../nodes/vp_rtmp_des_node.h" #include "../utils/analysis_board/vp_analysis_board.h" #if MAIN int main() { // create nodes auto file_src_0 = std::make_shared<vp_nodes::vp_file_src_node>("file_src_0", 0, "./test_video/13.mp4"); auto trt_vehicle_detector = std::make_shared<vp_nodes::vp_trt_vehicle_detector>("vehicle_detector", "./vehicle.trt"); auto trt_vehicle_plate_detector = std::make_shared<vp_nodes::vp_trt_vehicle_plate_detector>("vehicle_plate_detector", "./det.trt", "./rec.trt"); auto osd_0 = std::make_shared<vp_nodes::vp_osd_node_v2>("osd_0", "./font/NotoSansCJKsc-Medium.otf"); auto screen_des_0 = std::make_shared<vp_nodes::vp_screen_des_node>("screen_des_0", 0, true, vp_objects::vp_size{640, 360}); auto rtmp_des_0 = std::make_shared<vp_nodes::vp_rtmp_des_node>("rtmp_des_0", 0, "rtmp://192.168.77.105/live/10000", vp_objects::vp_size{1280, 720}); // construct pipeline trt_vehicle_detector->attach_to({file_src_0}); trt_vehicle_plate_detector->attach_to({trt_vehicle_detector}); osd_0->attach_to({trt_vehicle_plate_detector}); // split into 2 sub branches automatically screen_des_0->attach_to({osd_0}); rtmp_des_0->attach_to({osd_0}); // start pipeline file_src_0->start(); // visualize pipeline for debug vp_utils::vp_analysis_board board({file_src_0}); board.display(); } #endif
上面程式碼可以生成3個畫面:
作者:周見智
出處:http://www.cnblogs.com/xiaozhi_5638/
首發公眾號,掃描二維條碼關注公眾號,分享原創計算機視覺/深度學習/演演算法落地相關文章