|
@@ -4,7 +4,7 @@
|
|
|
* @Autor: lishengyin
|
|
|
* @Date: 2021-10-13 09:35:37
|
|
|
* @LastEditors: lishengyin
|
|
|
- * @LastEditTime: 2021-12-28 09:01:07
|
|
|
+ * @LastEditTime: 2021-12-29 17:22:41
|
|
|
*/
|
|
|
#include "inference.h"
|
|
|
|
|
@@ -89,7 +89,7 @@ namespace MIVA{
|
|
|
* @return {*} 是否初始化成功
|
|
|
* @author: lishengyin
|
|
|
*/
|
|
|
- int32_t Inference::Init(std::shared_ptr<InferInfo> InferInfo)
|
|
|
+ int32_t Inference::Init()
|
|
|
{
|
|
|
m_recorder = recorder::CreateNew();
|
|
|
// init
|
|
@@ -107,8 +107,8 @@ namespace MIVA{
|
|
|
return ERR;
|
|
|
}
|
|
|
gst_bin_add (GST_BIN (this->pipeline), streammux);
|
|
|
- this->m_InferInfo = InferInfo;
|
|
|
- g_InferInfo = InferInfo;
|
|
|
+ this->m_InferInfo = InferInfo::CreateNew();
|
|
|
+ g_InferInfo = this->m_InferInfo;
|
|
|
|
|
|
// 创建数据源
|
|
|
std::vector<DataSource>::iterator iter;
|
|
@@ -314,24 +314,26 @@ namespace MIVA{
|
|
|
sourceId++;
|
|
|
}
|
|
|
|
|
|
- state_return = gst_element_set_state(this->queue1, GST_STATE_NULL);
|
|
|
- switch (state_return) {
|
|
|
- case GST_STATE_CHANGE_SUCCESS:
|
|
|
- InfoL << "queue1 STATE CHANGE SUCCESS";
|
|
|
- break;
|
|
|
- case GST_STATE_CHANGE_FAILURE:
|
|
|
- ErrorL << "queue1 STATE CHANGE FAILURE";
|
|
|
- break;
|
|
|
- case GST_STATE_CHANGE_ASYNC:
|
|
|
- InfoL << "queue1 STATE CHANGE ASYNC";
|
|
|
- break;
|
|
|
- case GST_STATE_CHANGE_NO_PREROLL:
|
|
|
- InfoL << "queue1 STATE CHANGE NO PREROLL";
|
|
|
- break;
|
|
|
- default:
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
+ // state_return = gst_element_set_state(this->queue1, GST_STATE_NULL);
|
|
|
+ // switch (state_return) {
|
|
|
+ // case GST_STATE_CHANGE_SUCCESS:
|
|
|
+ // InfoL << "queue1 STATE CHANGE SUCCESS";
|
|
|
+ // break;
|
|
|
+ // case GST_STATE_CHANGE_FAILURE:
|
|
|
+ // ErrorL << "queue1 STATE CHANGE FAILURE";
|
|
|
+ // break;
|
|
|
+ // case GST_STATE_CHANGE_ASYNC:
|
|
|
+ // InfoL << "queue1 STATE CHANGE ASYNC";
|
|
|
+ // break;
|
|
|
+ // case GST_STATE_CHANGE_NO_PREROLL:
|
|
|
+ // InfoL << "queue1 STATE CHANGE NO PREROLL";
|
|
|
+ // break;
|
|
|
+ // default:
|
|
|
+ // break;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // 16:49:40 16:58:33 16:58:33 16:55:15
|
|
|
+
|
|
|
if(m_recorder != nullptr){
|
|
|
m_recorder->Finish();
|
|
|
}
|
|
@@ -470,14 +472,17 @@ namespace MIVA{
|
|
|
// 推理广播
|
|
|
NoticeCenter::Instance().emitEvent(NOTICE_INFER,frame_meta->source_id, num);
|
|
|
}
|
|
|
- // ErrorL << "size:" << i;
|
|
|
- int interNum = 0;
|
|
|
- for(auto &data: g_InferInfo->DataSources){
|
|
|
- if(data.Play == true && data.source_bin != NULL){
|
|
|
- interNum++;
|
|
|
- }
|
|
|
- }
|
|
|
- if(i == interNum) NoticeCenter::Instance().emitEvent(NOTICE_INFEREPER);
|
|
|
+ gst_buffer_unmap (buf, &in_map_info);
|
|
|
+ // int interNum = 0;
|
|
|
+ // for(auto &data: g_InferInfo->DataSources){
|
|
|
+ // if(data.Play == true && data.source_bin != NULL){
|
|
|
+ // interNum++;
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // if(i == interNum) {
|
|
|
+ // NoticeCenter::Instance().emitEvent(NOTICE_INFEREPER);
|
|
|
+ // }
|
|
|
+
|
|
|
return GST_PAD_PROBE_OK;
|
|
|
}
|
|
|
|
|
@@ -507,6 +512,9 @@ namespace MIVA{
|
|
|
NvDsBatchMeta *batch_meta = gst_buffer_get_nvds_batch_meta (buf);
|
|
|
l_frame = batch_meta->frame_meta_list;
|
|
|
|
|
|
+ map<string, vector<cv::Mat>> frames;
|
|
|
+ frames.clear();
|
|
|
+ int i = 0;
|
|
|
for (l_frame = batch_meta->frame_meta_list; l_frame != NULL;l_frame = l_frame->next) //从批量中获取某一帧图
|
|
|
{
|
|
|
NvDsFrameMeta *frame_meta = (NvDsFrameMeta *) (l_frame->data);
|
|
@@ -548,31 +556,78 @@ namespace MIVA{
|
|
|
cv::Mat out_mat = cv::Mat (cv::Size(frame_width, frame_height), CV_8UC3);
|
|
|
cv::cvtColor(frame, out_mat, CV_RGBA2BGR);
|
|
|
|
|
|
- //WarnL << "buf_pts" << frame_meta->source_id << ":" << frame_meta->buf_pts << endl;
|
|
|
- //WarnL << "ntp_timestamp" << frame_meta->source_id << ":" << frame_meta->ntp_timestamp << endl;
|
|
|
-
|
|
|
- // time_t t;
|
|
|
- // struct tm *p;
|
|
|
- // t=frame_meta->buf_pts;
|
|
|
- // p=gmtime(&t);
|
|
|
- // char s[80];
|
|
|
- // strftime(s, 80, "%Y-%m-%d %H:%M:%S", p);
|
|
|
- // // printf("%d: %s\n", (int)t, s);
|
|
|
- // WarnL << "time:" << s << endl;
|
|
|
-
|
|
|
- std::shared_ptr<recorder> m_recorder = recorder::CreateNew();
|
|
|
- if(m_recorder != nullptr){
|
|
|
- m_recorder->ConsumerData(frame_meta->source_id, out_mat);
|
|
|
- }
|
|
|
+ frames[g_InferInfo->DataSources[frame_meta->source_id].Pid].push_back(out_mat);
|
|
|
+ i++;
|
|
|
if(src_data != NULL) {
|
|
|
free(src_data);
|
|
|
src_data = NULL;
|
|
|
}
|
|
|
}
|
|
|
+ if(frames.size() == 0) {
|
|
|
+ gst_buffer_unmap (buf, &in_map_info);
|
|
|
+ return GST_PAD_PROBE_OK;
|
|
|
+ }
|
|
|
+ std::shared_ptr<recorder> m_recorder = recorder::CreateNew();
|
|
|
+ if(m_recorder != nullptr){
|
|
|
+ for(auto iter = frames.begin(); iter != frames.end(); iter++){
|
|
|
+ int frame_size = iter->second.size();
|
|
|
+ int num = 0;
|
|
|
+ for(auto& source : g_InferInfo->DataSources){
|
|
|
+ if(source.Pid == iter->first){
|
|
|
+ num = source.AddrNum;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(frame_size != num) continue;
|
|
|
+ if(frame_size == 1){
|
|
|
+ m_recorder->ConsumerData(iter->first, iter->second[0]);
|
|
|
+ }else{
|
|
|
+ cv::Mat outImg;
|
|
|
+
|
|
|
+ int rows = (int) sqrt (frame_size);
|
|
|
+ int columns = (int) ceil (1.0 * frame_size / rows);
|
|
|
+
|
|
|
+ int a = 0;
|
|
|
+ for(int i = 1; i <= rows; i++){
|
|
|
+ cv::Mat img;
|
|
|
+ for(; a < columns * i ; a++){
|
|
|
+ if(a + 1 > frame_size){
|
|
|
+ cv::Mat M(cv::Size(1920, 1080), CV_8UC3);
|
|
|
+ hconcat(iter->second[a],iter->second[0],img);
|
|
|
+ }else if(a == 0){
|
|
|
+ hconcat(iter->second[a],iter->second[a + 1],img);
|
|
|
+ a++;
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ if(a >= columns && a % columns == 0){
|
|
|
+ hconcat(iter->second[a],iter->second[a + 1],img);
|
|
|
+ a++;
|
|
|
+ }else
|
|
|
+ hconcat(img,iter->second[a],img);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(i == 1) outImg = img;
|
|
|
+ else{
|
|
|
+ vconcat(outImg,img,outImg);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ cv::resize(outImg, outImg, cv::Size(1920, 1080));
|
|
|
+ m_recorder->ConsumerData(iter->first, outImg);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ int interNum = 0;
|
|
|
+ for(auto &data: g_InferInfo->DataSources){
|
|
|
+ if(data.Play == true && data.source_bin != NULL){
|
|
|
+ interNum++;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(i == interNum) {
|
|
|
+ NoticeCenter::Instance().emitEvent(NOTICE_INFEREPER);
|
|
|
+ }
|
|
|
+
|
|
|
gst_buffer_unmap (buf, &in_map_info);
|
|
|
-
|
|
|
return GST_PAD_PROBE_OK;
|
|
|
-
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -658,12 +713,12 @@ namespace MIVA{
|
|
|
#ifndef PLATFORM_TEGRA
|
|
|
case GST_MESSAGE_ELEMENT:
|
|
|
{
|
|
|
- if (gst_nvmessage_is_stream_eos (msg)) {
|
|
|
- guint stream_id;
|
|
|
- if (gst_nvmessage_parse_stream_eos (msg, &stream_id)) {
|
|
|
- InfoL << "Got EOS from stream " << stream_id;
|
|
|
+ if (gst_nvmessage_is_stream_eos (msg)) {
|
|
|
+ guint stream_id;
|
|
|
+ if (gst_nvmessage_parse_stream_eos (msg, &stream_id)) {
|
|
|
+ InfoL << "Got EOS from stream " << stream_id;
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
break;
|
|
|
}
|
|
|
#endif
|