Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageMatrix (googly_document_ai v0.1.0)

Copy Markdown View Source

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

Attributes

  • cols (type: integer()) - Number of columns in the matrix.
  • data (type: String.t()) - The matrix data.
  • rows (type: integer()) - Number of rows in the matrix.
  • type (type: integer()) - 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

Summary

Types

t()

@type t() :: %Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageMatrix{
  cols: integer() | nil,
  data: String.t() | nil,
  rows: integer() | nil,
  type: integer() | nil
}