pub trait GScalarTraitConst {
    fn as_raw_GScalar(&self) -> *const c_void;
}
Expand description

\addtogroup gapi_data_objects /

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.

See also

Scalar

Required Methods

Implementors