Class: TencentCloud::Ocr::V20181119::Polygon
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ocr::V20181119::Polygon
- Defined in:
- lib/v20181119/models.rb
Overview
文本的坐标,以四个顶点坐标表示 注意:此字段可能返回 null,表示取不到有效值
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(lefttop = nil, righttop = nil, rightbottom = nil, leftbottom = nil) ⇒ Polygon
constructor
A new instance of Polygon.
Constructor Details
#initialize(lefttop = nil, righttop = nil, rightbottom = nil, leftbottom = nil) ⇒ Polygon
Returns a new instance of Polygon.
7009 7010 7011 7012 7013 7014 |
# File 'lib/v20181119/models.rb', line 7009 def initialize(lefttop=nil, righttop=nil, rightbottom=nil, leftbottom=nil) @LeftTop = lefttop @RightTop = righttop @RightBottom = rightbottom @LeftBottom = leftbottom end |
Instance Attribute Details
#LeftBottom ⇒ Object
7007 7008 7009 |
# File 'lib/v20181119/models.rb', line 7007 def LeftBottom @LeftBottom end |
#LeftTop ⇒ Object
7007 7008 7009 |
# File 'lib/v20181119/models.rb', line 7007 def LeftTop @LeftTop end |
#RightBottom ⇒ Object
7007 7008 7009 |
# File 'lib/v20181119/models.rb', line 7007 def RightBottom @RightBottom end |
#RightTop ⇒ Object
7007 7008 7009 |
# File 'lib/v20181119/models.rb', line 7007 def RightTop @RightTop end |
Instance Method Details
#deserialize(params) ⇒ Object
7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 |
# File 'lib/v20181119/models.rb', line 7016 def deserialize(params) unless params['LeftTop'].nil? @LeftTop = Coord.new @LeftTop.deserialize(params['LeftTop']) end unless params['RightTop'].nil? @RightTop = Coord.new @RightTop.deserialize(params['RightTop']) end unless params['RightBottom'].nil? @RightBottom = Coord.new @RightBottom.deserialize(params['RightBottom']) end unless params['LeftBottom'].nil? @LeftBottom = Coord.new @LeftBottom.deserialize(params['LeftBottom']) end end |