Class: TencentCloud::Ocr::V20181119::ImageCoordinates

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

Overview

头像位置坐标

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(x = nil, y = nil, width = nil, height = nil) ⇒ ImageCoordinates

Returns a new instance of ImageCoordinates.



4476
4477
4478
4479
4480
4481
# File 'lib/v20181119/models.rb', line 4476

def initialize(x=nil, y=nil, width=nil, height=nil)
  @X = x
  @Y = y
  @Width = width
  @Height = height
end

Instance Attribute Details

#HeightObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • X:

    头像左上角横坐标

  • Y:

    头像左上角纵坐标

  • Width:

    头像框宽度

  • Height:

    头像框高度



4474
4475
4476
# File 'lib/v20181119/models.rb', line 4474

def Height
  @Height
end

#WidthObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • X:

    头像左上角横坐标

  • Y:

    头像左上角纵坐标

  • Width:

    头像框宽度

  • Height:

    头像框高度



4474
4475
4476
# File 'lib/v20181119/models.rb', line 4474

def Width
  @Width
end

#XObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • X:

    头像左上角横坐标

  • Y:

    头像左上角纵坐标

  • Width:

    头像框宽度

  • Height:

    头像框高度



4474
4475
4476
# File 'lib/v20181119/models.rb', line 4474

def X
  @X
end

#YObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • X:

    头像左上角横坐标

  • Y:

    头像左上角纵坐标

  • Width:

    头像框宽度

  • Height:

    头像框高度



4474
4475
4476
# File 'lib/v20181119/models.rb', line 4474

def Y
  @Y
end

Instance Method Details

#deserialize(params) ⇒ Object



4483
4484
4485
4486
4487
4488
# File 'lib/v20181119/models.rb', line 4483

def deserialize(params)
  @X = params['X']
  @Y = params['Y']
  @Width = params['Width']
  @Height = params['Height']
end