1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Merge pull request #19709 from TolyaTalamanov:at/async-inferlist-infer2

G-API: Implement async version for InferList & Infer2

* Implement async version for InferList & Infer2

* Fix warning

* Fix bug with roi ordering

* Post input meta instead of empty

* Fix comments to review
This commit is contained in:
Anatoliy Talamanov
2021-03-18 23:33:19 +03:00
committed by GitHub
parent af63fffb63
commit dc31e20925
2 changed files with 150 additions and 153 deletions
@@ -1255,7 +1255,6 @@ TEST(InferList, TestStreamingInfer)
}.cfgOutputLayers({ "age_conv3", "prob" })
.cfgNumRequests(4u);
std::size_t num_frames = 0u;
std::size_t max_frames = 10u;
@@ -1308,7 +1307,6 @@ TEST(InferList, TestStreamingInfer)
++num_frames;
cap >> in_mat;
}
pipeline.stop();
}
TEST(Infer2, TestStreamingInfer)