Class: TencentCloud::Ocr::V20181119::BusinessCardInfo

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

Overview

名片识别结果

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, value = nil, itemcoord = nil) ⇒ BusinessCardInfo

Returns a new instance of BusinessCardInfo.



973
974
975
976
977
# File 'lib/v20181119/models.rb', line 973

def initialize(name=nil, value=nil, itemcoord=nil)
  @Name = name
  @Value = value
  @ItemCoord = itemcoord
end

Instance Attribute Details

#ItemCoordObject

姓名、英文姓名、英文地址、公司、英文公司、职位、英文职位、部门、英文部门、手机、电话、传真、社交帐号、QQ、MSN、微信、微博、邮箱、邮编、网址、公司账号、其他。

Parameters:

  • Name:

    识别出的字段名称(关键字,可能重复,比如多个手机),能识别的字段名为:

  • Value:

    识别出的字段名称对应的值,也就是字段name对应的字符串结果。

  • ItemCoord:

    文本行在旋转纠正之后的图像中的像素坐标,表示为(左上角x, 左上角y,宽width,高height)



971
972
973
# File 'lib/v20181119/models.rb', line 971

def ItemCoord
  @ItemCoord
end

#NameObject

姓名、英文姓名、英文地址、公司、英文公司、职位、英文职位、部门、英文部门、手机、电话、传真、社交帐号、QQ、MSN、微信、微博、邮箱、邮编、网址、公司账号、其他。

Parameters:

  • Name:

    识别出的字段名称(关键字,可能重复,比如多个手机),能识别的字段名为:

  • Value:

    识别出的字段名称对应的值,也就是字段name对应的字符串结果。

  • ItemCoord:

    文本行在旋转纠正之后的图像中的像素坐标,表示为(左上角x, 左上角y,宽width,高height)



971
972
973
# File 'lib/v20181119/models.rb', line 971

def Name
  @Name
end

#ValueObject

姓名、英文姓名、英文地址、公司、英文公司、职位、英文职位、部门、英文部门、手机、电话、传真、社交帐号、QQ、MSN、微信、微博、邮箱、邮编、网址、公司账号、其他。

Parameters:

  • Name:

    识别出的字段名称(关键字,可能重复,比如多个手机),能识别的字段名为:

  • Value:

    识别出的字段名称对应的值,也就是字段name对应的字符串结果。

  • ItemCoord:

    文本行在旋转纠正之后的图像中的像素坐标,表示为(左上角x, 左上角y,宽width,高height)



971
972
973
# File 'lib/v20181119/models.rb', line 971

def Value
  @Value
end

Instance Method Details

#deserialize(params) ⇒ Object



979
980
981
982
983
984
985
986
# File 'lib/v20181119/models.rb', line 979

def deserialize(params)
  @Name = params['Name']
  @Value = params['Value']
  unless params['ItemCoord'].nil?
    @ItemCoord = ItemCoord.new
    @ItemCoord.deserialize(params['ItemCoord'])
  end
end