Show / Hide Table of Contents

Class GoogleCloudDocumentaiV1beta3DocumentPageMatrix

Representation for transformation matrix, intended to be compatible and used with OpenCV format for image manipulation.

Inheritance
object
GoogleCloudDocumentaiV1beta3DocumentPageMatrix
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Document.v1beta3.Data
Assembly: Google.Apis.Document.v1beta3.dll
Syntax
public class GoogleCloudDocumentaiV1beta3DocumentPageMatrix : 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?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX