mirror of
https://github.com/opencv/opencv.git
synced 2024-12-13 16:09:23 +08:00
f174363f60
G-API: A quick value-initialization support GMat #25055 This PR enables `GMat` objects to be value-initialized in the same way as it was done for `GScalar`s (and, possibly, other types). - Added some helper methods in backends to distinguish if a certain G-type value initialization is supported or not; - Added tests, including negative. Where it is needed: - Further extension of the OVCV backend (#24379 - will be refreshed soon); - Further experiments with DNN module; - Further experiments with "G-API behind UMat" sort of aggregation. In the current form, PR can be reviewed & merged (@TolyaTalamanov please have a look) ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [x] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [x] The feature is well documented and sample code can be built with the project CMake
141 lines
4.1 KiB
C++
141 lines
4.1 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 Intel Corporation
|
|
|
|
|
|
#ifndef OPENCV_GAPI_GSCALAR_HPP
|
|
#define OPENCV_GAPI_GSCALAR_HPP
|
|
|
|
#include <ostream>
|
|
|
|
#include <opencv2/gapi/opencv_includes.hpp>
|
|
#include <opencv2/gapi/gcommon.hpp> // GShape
|
|
#include <opencv2/gapi/util/optional.hpp>
|
|
|
|
namespace cv
|
|
{
|
|
// Forward declaration; GNode and GOrigin are an internal
|
|
// (user-inaccessible) classes.
|
|
class GNode;
|
|
struct GOrigin;
|
|
|
|
/** \addtogroup gapi_data_objects
|
|
* @{
|
|
*/
|
|
/**
|
|
* @brief GScalar class represents cv::Scalar data in the graph.
|
|
*
|
|
* GScalar may be associated with a cv::Scalar value, which becomes
|
|
* its constant value bound in graph compile time. cv::GScalar describes a
|
|
* functional relationship between operations consuming and producing
|
|
* GScalar objects.
|
|
*
|
|
* GScalar is a virtual counterpart of cv::Scalar, which is usually used
|
|
* to represent the GScalar data in G-API during the execution.
|
|
*
|
|
* @sa Scalar
|
|
*/
|
|
class GAPI_EXPORTS_W_SIMPLE GScalar
|
|
{
|
|
public:
|
|
/**
|
|
* @brief Constructs an empty GScalar
|
|
*
|
|
* Normally, empty G-API data objects denote a starting point of
|
|
* the graph. When an empty GScalar is assigned to a result of some
|
|
* operation, it obtains a functional link to this operation (and
|
|
* is not empty anymore).
|
|
*/
|
|
GAPI_WRAP GScalar();
|
|
|
|
/**
|
|
* @brief Constructs a value-initialized GScalar
|
|
*
|
|
* GScalars may have their values be associated at graph
|
|
* construction time. It is useful when some operation has a
|
|
* GScalar input which doesn't change during the program
|
|
* execution, and is set only once. In this case, there is no need
|
|
* to declare such GScalar as a graph input.
|
|
*
|
|
* @note The value of GScalar may be overwritten by assigning some
|
|
* other GScalar to the object using `operator=` -- on the
|
|
* assignment, the old GScalar value is discarded.
|
|
*
|
|
* @param s a cv::Scalar value to associate with this GScalar object.
|
|
*/
|
|
GAPI_WRAP
|
|
explicit GScalar(const cv::Scalar& s);
|
|
|
|
/**
|
|
* @overload
|
|
* @brief Constructs a value-initialized GScalar
|
|
*
|
|
* @param s a cv::Scalar value to associate with this GScalar object.
|
|
*/
|
|
explicit GScalar(cv::Scalar&& s); // Constant value move-constructor from cv::Scalar
|
|
|
|
/**
|
|
* @overload
|
|
* @brief Constructs a value-initialized GScalar
|
|
*
|
|
* @param v0 A `double` value to associate with this GScalar. Note
|
|
* that only the first component of a four-component cv::Scalar is
|
|
* set to this value, with others remain zeros.
|
|
*
|
|
* This constructor overload is not marked `explicit` and can be
|
|
* used in G-API expression code like this:
|
|
*
|
|
* @snippet samples/cpp/tutorial_code/gapi/doc_snippets/api_ref_snippets.cpp gscalar_implicit
|
|
*
|
|
* Here operator+(GMat,GScalar) is used to wrap cv::gapi::addC()
|
|
* and a value-initialized GScalar is created on the fly.
|
|
*
|
|
* @overload
|
|
*/
|
|
GScalar(double v0); // Constant value constructor from double
|
|
|
|
/// @private
|
|
GScalar(const GNode &n, std::size_t out); // Operation result constructor
|
|
/// @private
|
|
GOrigin& priv(); // Internal use only
|
|
/// @private
|
|
const GOrigin& priv() const; // Internal use only
|
|
|
|
private:
|
|
std::shared_ptr<GOrigin> m_priv;
|
|
};
|
|
|
|
/** @} */
|
|
|
|
/**
|
|
* \addtogroup gapi_meta_args
|
|
* @{
|
|
*/
|
|
struct GAPI_EXPORTS_W_SIMPLE GScalarDesc
|
|
{
|
|
// NB.: right now it is empty
|
|
|
|
inline bool operator== (const GScalarDesc &) const
|
|
{
|
|
return true; // NB: implement this method if GScalar meta appears
|
|
}
|
|
|
|
inline bool operator!= (const GScalarDesc &rhs) const
|
|
{
|
|
return !(*this == rhs);
|
|
}
|
|
};
|
|
|
|
GAPI_EXPORTS_W inline GScalarDesc empty_scalar_desc() { return GScalarDesc(); }
|
|
|
|
GAPI_EXPORTS GScalarDesc descr_of(const cv::Scalar &scalar);
|
|
|
|
std::ostream& operator<<(std::ostream& os, const cv::GScalarDesc &desc);
|
|
|
|
} // namespace cv
|
|
|
|
#endif // OPENCV_GAPI_GSCALAR_HPP
|