/
Alx89
/
OpenCV
Обзор
Документация
Войти
/
Alx89
/
OpenCV
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
modules/gapi/src/api/gopaque.cpp
50 строк
1 KB
Alexey Smirnov
Merge pull request #18127 from smirnov-alexey:as/gapi_serialization
07 сен 2020, 20:10
Не верифицирован
07 сен 2020, 20:10
a3e8c6e
Код
Авторство
О чём код?
// 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) 2019-2020 Intel Corporation #include "precomp.hpp" #include <opencv2/gapi/gopaque.hpp> #include "api/gorigin.hpp" // cv::detail::GOpaqueU public implementation /////////////////////////////////// cv::detail::GOpaqueU::GOpaqueU() : m_priv(new GOrigin(GShape::GOPAQUE, cv::GNode::Param())) { } cv::detail::GOpaqueU::GOpaqueU(const GNode &n, std::size_t out) : m_priv(new GOrigin(GShape::GOPAQUE, n, out)) { } cv::GOrigin& cv::detail::GOpaqueU::priv() { return *m_priv; } const cv::GOrigin& cv::detail::GOpaqueU::priv() const { return *m_priv; } void cv::detail::GOpaqueU::setConstructFcn(ConstructOpaque &&co) { m_priv->ctor = std::move(co); } void cv::detail::GOpaqueU::setKind(cv::detail::OpaqueKind kind) { m_priv->kind = kind; } namespace cv { std::ostream& operator<<(std::ostream& os, const cv::GOpaqueDesc &) { // FIXME: add type information here os << "(Opaque)"; return os; } }