mirror of
https://github.com/opencv/opencv.git
synced 2025-07-25 14:47:07 +08:00

[G-API]: Add GArray initialization support * Added GArray initialization (CONST_VALUE, GScalar analog) and test for this * Whitespaces * And one more space * Trailing whitespace * Test name changed. Build with magic commands. * GArray works with rvalue initialization * Code cleanup * Ternary operator in the initialization list.
56 lines
1.2 KiB
C++
56 lines
1.2 KiB
C++
// 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) 2018-2020 Intel Corporation
|
|
|
|
|
|
#include "precomp.hpp"
|
|
#include <opencv2/gapi/garray.hpp>
|
|
#include "api/gorigin.hpp"
|
|
|
|
// cv::detail::GArrayU public implementation ///////////////////////////////////
|
|
cv::detail::GArrayU::GArrayU()
|
|
: m_priv(new GOrigin(GShape::GARRAY, cv::GNode::Param()))
|
|
{
|
|
}
|
|
|
|
cv::detail::GArrayU::GArrayU(const GNode &n, std::size_t out)
|
|
: m_priv(new GOrigin(GShape::GARRAY, n, out))
|
|
{
|
|
}
|
|
|
|
cv::detail::GArrayU::GArrayU(const detail::VectorRef& vref)
|
|
: m_priv(new GOrigin(GShape::GARRAY, cv::gimpl::ConstVal(vref)))
|
|
{
|
|
}
|
|
|
|
cv::GOrigin& cv::detail::GArrayU::priv()
|
|
{
|
|
return *m_priv;
|
|
}
|
|
|
|
const cv::GOrigin& cv::detail::GArrayU::priv() const
|
|
{
|
|
return *m_priv;
|
|
}
|
|
|
|
void cv::detail::GArrayU::setConstructFcn(ConstructVec &&cv)
|
|
{
|
|
m_priv->ctor = std::move(cv);
|
|
}
|
|
|
|
void cv::detail::GArrayU::setKind(cv::detail::OpaqueKind kind)
|
|
{
|
|
m_priv->kind = kind;
|
|
}
|
|
|
|
namespace cv {
|
|
std::ostream& operator<<(std::ostream& os, const cv::GArrayDesc &)
|
|
{
|
|
// FIXME: add type information here
|
|
os << "(array)";
|
|
return os;
|
|
}
|
|
}
|