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

Introduce a new abstraction layer over island input/output data

- Port GExecutor to this new interface
This commit is contained in:
Dmitry Matveev
2020-03-16 18:05:41 +03:00
committed by Ruslan Garnov
parent 277f0d270f
commit 1b5730a799
5 changed files with 94 additions and 25 deletions
@@ -153,6 +153,8 @@ public:
virtual void run(std::vector<InObj> &&input_objs,
std::vector<OutObj> &&output_objs) override;
using GIslandExecutable::run; // (IInput&, IOutput&) version
void run(std::vector<InObj> &input_objs,
std::vector<OutObj> &output_objs);