Class: TencentCloud::Ocr::V20181119::TableCellInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ocr::V20181119::TableCellInfo
- Defined in:
- lib/v20181119/models.rb
Overview
单元格数据
Instance Attribute Summary collapse
- #ColBr ⇒ Object
- #ColTl ⇒ Object
- #Confidence ⇒ Object
- #Polygon ⇒ Object
- #RowBr ⇒ Object
- #RowTl ⇒ Object
- #Text ⇒ Object
- #Type ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(coltl = nil, rowtl = nil, colbr = nil, rowbr = nil, text = nil, type = nil, confidence = nil, polygon = nil) ⇒ TableCellInfo
constructor
A new instance of TableCellInfo.
Constructor Details
#initialize(coltl = nil, rowtl = nil, colbr = nil, rowbr = nil, text = nil, type = nil, confidence = nil, polygon = nil) ⇒ TableCellInfo
Returns a new instance of TableCellInfo.
11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 |
# File 'lib/v20181119/models.rb', line 11572 def initialize(coltl=nil, rowtl=nil, colbr=nil, rowbr=nil, text=nil, type=nil, confidence=nil, polygon=nil) @ColTl = coltl @RowTl = rowtl @ColBr = colbr @RowBr = rowbr @Text = text @Type = type @Confidence = confidence @Polygon = polygon end |
Instance Attribute Details
#ColBr ⇒ Object
11570 11571 11572 |
# File 'lib/v20181119/models.rb', line 11570 def ColBr @ColBr end |
#ColTl ⇒ Object
11570 11571 11572 |
# File 'lib/v20181119/models.rb', line 11570 def ColTl @ColTl end |
#Confidence ⇒ Object
11570 11571 11572 |
# File 'lib/v20181119/models.rb', line 11570 def Confidence @Confidence end |
#Polygon ⇒ Object
11570 11571 11572 |
# File 'lib/v20181119/models.rb', line 11570 def Polygon @Polygon end |
#RowBr ⇒ Object
11570 11571 11572 |
# File 'lib/v20181119/models.rb', line 11570 def RowBr @RowBr end |
#RowTl ⇒ Object
11570 11571 11572 |
# File 'lib/v20181119/models.rb', line 11570 def RowTl @RowTl end |
#Text ⇒ Object
11570 11571 11572 |
# File 'lib/v20181119/models.rb', line 11570 def Text @Text end |
#Type ⇒ Object
11570 11571 11572 |
# File 'lib/v20181119/models.rb', line 11570 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 |
# File 'lib/v20181119/models.rb', line 11583 def deserialize(params) @ColTl = params['ColTl'] @RowTl = params['RowTl'] @ColBr = params['ColBr'] @RowBr = params['RowBr'] @Text = params['Text'] @Type = params['Type'] @Confidence = params['Confidence'] unless params['Polygon'].nil? @Polygon = [] params['Polygon'].each do |i| coord_tmp = Coord.new coord_tmp.deserialize(i) @Polygon << coord_tmp end end end |