Class: Google::Apis::VisionV1::Page
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::VisionV1::Page
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/vision_v1/classes.rb,
generated/google/apis/vision_v1/representations.rb,
generated/google/apis/vision_v1/representations.rb 
Overview
Detected page from OCR.
Instance Attribute Summary collapse
- 
  
    
      #blocks  ⇒ Array<Google::Apis::VisionV1::Block> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of blocks of text, images etc on this page.
 - 
  
    
      #confidence  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Confidence of the OCR results on the page.
 - 
  
    
      #height  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Page height.
 - 
  
    
      #property  ⇒ Google::Apis::VisionV1::TextProperty 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Additional information detected on the structural component.
 - 
  
    
      #width  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Page width.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Page 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Page.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Page
Returns a new instance of Page
      6658 6659 6660  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 6658 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#blocks ⇒ Array<Google::Apis::VisionV1::Block>
List of blocks of text, images etc on this page.
Corresponds to the JSON property blocks
      6634 6635 6636  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 6634 def blocks @blocks end  | 
  
#confidence ⇒ Float
Confidence of the OCR results on the page. Range [0, 1].
Corresponds to the JSON property confidence
      6639 6640 6641  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 6639 def confidence @confidence end  | 
  
#height ⇒ Fixnum
Page height. For PDFs the unit is points. For images (including
TIFFs) the unit is pixels.
Corresponds to the JSON property height
      6645 6646 6647  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 6645 def height @height end  | 
  
#property ⇒ Google::Apis::VisionV1::TextProperty
Additional information detected on the structural component.
Corresponds to the JSON property property
      6650 6651 6652  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 6650 def property @property end  | 
  
#width ⇒ Fixnum
Page width. For PDFs the unit is points. For images (including
TIFFs) the unit is pixels.
Corresponds to the JSON property width
      6656 6657 6658  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 6656 def width @width end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6663 6664 6665 6666 6667 6668 6669  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 6663 def update!(**args) @blocks = args[:blocks] if args.key?(:blocks) @confidence = args[:confidence] if args.key?(:confidence) @height = args[:height] if args.key?(:height) @property = args[:property] if args.key?(:property) @width = args[:width] if args.key?(:width) end  |