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

G-API: Introduced a Text Detection sample

This sample models the Text Detection demo from OMZ:
https://github.com/openvinotoolkit/open_model_zoo/tree/2020.4/demos/text_detection_demo

Also: renamed cv::gapi::size() to cv::gapi::streaming::size()
This commit is contained in:
Dmitry Matveev
2020-10-01 00:18:04 +03:00
parent 510dc17c2e
commit 95ff928228
8 changed files with 755 additions and 23 deletions
@@ -1691,7 +1691,7 @@ TEST_P(SizeTest, ParseTest)
cv::GMat in;
cv::Size out_sz;
auto out = cv::gapi::size(in);
auto out = cv::gapi::streaming::size(in);
cv::GComputation c(cv::GIn(in), cv::GOut(out));
c.apply(cv::gin(in_mat1), cv::gout(out_sz), getCompileArgs());
@@ -1704,7 +1704,7 @@ TEST_P(SizeRTest, ParseTest)
cv::Size out_sz;
cv::GOpaque<cv::Rect> op_rect;
auto out = cv::gapi::size(op_rect);
auto out = cv::gapi::streaming::size(op_rect);
cv::GComputation c(cv::GIn(op_rect), cv::GOut(out));
c.apply(cv::gin(rect), cv::gout(out_sz), getCompileArgs());