Matrix(mapping=None, *, ignore_unknown_fields=False, **kwargs)
Representation for transformation matrix, intended to be compatible and used with OpenCV format for image manipulation.
Attributes |
|
---|---|
Name | Description |
rows |
int
Number of rows in the matrix. |
cols |
int
Number of columns in the matrix. |
type_ |
int
This encodes information about what data type the matrix uses. For example, 0 (CV_8U) is an unsigned 8-bit image. For the full list of OpenCV primitive data types, please refer to https://docs.opencv.org/4.3.0/d1/d1b/group__core__hal__interface.html |
data |
bytes
The matrix data. |