mirror of
https://github.com/opencv/opencv.git
synced 2025-08-01 10:26:53 +08:00
49 lines
1.2 KiB
C++
49 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) 2020 Intel Corporation
|
|
|
|
|
|
#include "precomp.hpp"
|
|
|
|
#include <opencv2/gapi/gframe.hpp>
|
|
|
|
#include "api/gorigin.hpp"
|
|
|
|
// cv::GFrame public implementation //////////////////////////////////////////////
|
|
cv::GFrame::GFrame()
|
|
: m_priv(new GOrigin(GShape::GFRAME, GNode::Param())) {
|
|
}
|
|
|
|
cv::GFrame::GFrame(const GNode &n, std::size_t out)
|
|
: m_priv(new GOrigin(GShape::GFRAME, n, out)) {
|
|
}
|
|
|
|
cv::GOrigin& cv::GFrame::priv() {
|
|
return *m_priv;
|
|
}
|
|
|
|
const cv::GOrigin& cv::GFrame::priv() const {
|
|
return *m_priv;
|
|
}
|
|
|
|
namespace cv {
|
|
|
|
bool GFrameDesc::operator== (const GFrameDesc &rhs) const {
|
|
return fmt == rhs.fmt && size == rhs.size;
|
|
}
|
|
|
|
std::ostream& operator<<(std::ostream& os, const cv::GFrameDesc &d) {
|
|
os << '[';
|
|
switch (d.fmt) {
|
|
case MediaFormat::BGR: os << "BGR"; break;
|
|
case MediaFormat::NV12: os << "NV12"; break;
|
|
default: GAPI_Assert(false && "Invalid media format");
|
|
}
|
|
os << ' ' << d.size << ']';
|
|
return os;
|
|
}
|
|
|
|
} // namespace cv
|