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.



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

#LeftBottomObject

Parameters:

  • LeftTop:

    左上顶点坐标

  • RightTop:

    右上顶点坐标

  • RightBottom:

    右下顶点坐标

  • LeftBottom:

    左下顶点坐标



7007
7008
7009
# File 'lib/v20181119/models.rb', line 7007

def LeftBottom
  @LeftBottom
end

#LeftTopObject

Parameters:

  • LeftTop:

    左上顶点坐标

  • RightTop:

    右上顶点坐标

  • RightBottom:

    右下顶点坐标

  • LeftBottom:

    左下顶点坐标



7007
7008
7009
# File 'lib/v20181119/models.rb', line 7007

def LeftTop
  @LeftTop
end

#RightBottomObject

Parameters:

  • LeftTop:

    左上顶点坐标

  • RightTop:

    右上顶点坐标

  • RightBottom:

    右下顶点坐标

  • LeftBottom:

    左下顶点坐标



7007
7008
7009
# File 'lib/v20181119/models.rb', line 7007

def RightBottom
  @RightBottom
end

#RightTopObject

Parameters:

  • LeftTop:

    左上顶点坐标

  • RightTop:

    右上顶点坐标

  • RightBottom:

    右下顶点坐标

  • LeftBottom:

    左下顶点坐标



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