Class: TencentCloud::Ocr::V20181119::Polygon

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20181119/models.rb

Overview

文本的坐标,以四个顶点坐标表示 注意:此字段可能返回 null,表示取不到有效值

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(lefttop = nil, righttop = nil, rightbottom = nil, leftbottom = nil) ⇒ Polygon

Returns a new instance of Polygon.



6682
6683
6684
6685
6686
6687
# File 'lib/v20181119/models.rb', line 6682

def initialize(lefttop=nil, righttop=nil, rightbottom=nil, leftbottom=nil)
  @LeftTop = lefttop
  @RightTop = righttop
  @RightBottom = rightbottom
  @LeftBottom = leftbottom
end

Instance Attribute Details

#LeftBottomObject

Parameters:

  • LeftTop:

    左上顶点坐标

  • RightTop:

    右上顶点坐标

  • RightBottom:

    右下顶点坐标

  • LeftBottom:

    左下顶点坐标



6680
6681
6682
# File 'lib/v20181119/models.rb', line 6680

def LeftBottom
  @LeftBottom
end

#LeftTopObject

Parameters:

  • LeftTop:

    左上顶点坐标

  • RightTop:

    右上顶点坐标

  • RightBottom:

    右下顶点坐标

  • LeftBottom:

    左下顶点坐标



6680
6681
6682
# File 'lib/v20181119/models.rb', line 6680

def LeftTop
  @LeftTop
end

#RightBottomObject

Parameters:

  • LeftTop:

    左上顶点坐标

  • RightTop:

    右上顶点坐标

  • RightBottom:

    右下顶点坐标

  • LeftBottom:

    左下顶点坐标



6680
6681
6682
# File 'lib/v20181119/models.rb', line 6680

def RightBottom
  @RightBottom
end

#RightTopObject

Parameters:

  • LeftTop:

    左上顶点坐标

  • RightTop:

    右上顶点坐标

  • RightBottom:

    右下顶点坐标

  • LeftBottom:

    左下顶点坐标



6680
6681
6682
# File 'lib/v20181119/models.rb', line 6680

def RightTop
  @RightTop
end

Instance Method Details

#deserialize(params) ⇒ Object



6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
# File 'lib/v20181119/models.rb', line 6689

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