/
Alx89
/
OpenCV
Обзор
Документация
Войти
/
Alx89
/
OpenCV
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
modules/gapi/src/executor/gabstractstreamingexecutor.cpp
23 строки
870 B
Dmitry Matveev
G-API: Introduce GAbstractStreamingExecutor
30 авг 2022, 23:50
30 авг 2022, 23:50
a122f0f
Код
Авторство
О чём код?
// This file is part of OpenCV project. // It is subject to the license terms in the LICENSE file found in the top-level directory // of this distribution and at http://opencv.org/license.html. // // Copyright (C) 2022 Intel Corporation #include "precomp.hpp" #include <opencv2/gapi/opencv_includes.hpp> #include "executor/gabstractstreamingexecutor.hpp" cv::gimpl::GAbstractStreamingExecutor::GAbstractStreamingExecutor(std::unique_ptr<ade::Graph> &&g_model, const GCompileArgs &comp_args) : m_orig_graph(std::move(g_model)) , m_island_graph(GModel::Graph(*m_orig_graph).metadata() .get<IslandModel>().model) , m_comp_args(comp_args) , m_gim(*m_island_graph) , m_desync(GModel::Graph(*m_orig_graph).metadata() .contains<Desynchronized>()) { }