Class GoogleCloudDocumentaiV1DocumentPageMatrix
Representation for transformation matrix, intended to be compatible and used with OpenCV format for image manipulation.
Implements
Inherited Members
Namespace: Google.Apis.Document.v1.Data
Assembly: Google.Apis.Document.v1.dll
Syntax
public class GoogleCloudDocumentaiV1DocumentPageMatrix : IDirectResponseSchema
Properties
Cols
Number of columns in the matrix.
Declaration
[JsonProperty("cols")]
public virtual int? Cols { get; set; }
Property Value
Type | Description |
---|---|
int? |
Data
The matrix data.
Declaration
[JsonProperty("data")]
public virtual string Data { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Rows
Number of rows in the matrix.
Declaration
[JsonProperty("rows")]
public virtual int? Rows { get; set; }
Property Value
Type | Description |
---|---|
int? |
Type
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
Declaration
[JsonProperty("type")]
public virtual int? Type { get; set; }
Property Value
Type | Description |
---|---|
int? |