Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageMatrix
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageMatrix
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/documentai_v1/classes.rb,
 lib/google/apis/documentai_v1/representations.rb,
 lib/google/apis/documentai_v1/representations.rb
Overview
Representation for transformation matrix, intended to be compatible and used with OpenCV format for image manipulation.
Instance Attribute Summary collapse
- 
  
    
      #cols  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Number of columns in the matrix. 
- 
  
    
      #data  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The matrix data. 
- 
  
    
      #rows  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Number of rows in the matrix. 
- 
  
    
      #type  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This encodes information about what data type the matrix uses. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDocumentaiV1DocumentPageMatrix 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudDocumentaiV1DocumentPageMatrix. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1DocumentPageMatrix
Returns a new instance of GoogleCloudDocumentaiV1DocumentPageMatrix.
| 2086 2087 2088 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2086 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#cols ⇒ Fixnum
Number of columns in the matrix.
Corresponds to the JSON property cols
| 2065 2066 2067 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2065 def cols @cols end | 
#data ⇒ String
The matrix data.
Corresponds to the JSON property data
NOTE: Values are automatically base64 encoded/decoded in the client library.
| 2071 2072 2073 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2071 def data @data end | 
#rows ⇒ Fixnum
Number of rows in the matrix.
Corresponds to the JSON property rows
| 2076 2077 2078 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2076 def rows @rows end | 
#type ⇒ Fixnum
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_corehal_interface.html
Corresponds to the JSON property type
| 2084 2085 2086 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2084 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2091 2092 2093 2094 2095 2096 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2091 def update!(**args) @cols = args[:cols] if args.key?(:cols) @data = args[:data] if args.key?(:data) @rows = args[:rows] if args.key?(:rows) @type = args[:type] if args.key?(:type) end |