[G-API] GStreamingBackend * Snapshot * Implement StreamingBackend * Refactoring * Refactoring 2 * Clean up * Add missing functionality to support MediaFrame as output * Partially address review comments * Fix build * Implement reshape for gstreamingbackend and add a test on it * Address more comments * Add format.hpp to gapi.hpp * Fix debug build * Address review comments Co-authored-by: Smirnov Alexey <alexey.smirnov@intel.com>
54 lines
1.3 KiB
C++
54 lines
1.3 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 <opencv2/gapi/media.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;
|
|
}
|
|
|
|
GFrameDesc descr_of(const cv::MediaFrame &frame) {
|
|
return frame.desc();
|
|
}
|
|
|
|
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
|