Class: TencentCloud::Ocr::V20181119::StructuralItem

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, confidence = nil, itemcoord = nil, row = nil) ⇒ StructuralItem

Returns a new instance of StructuralItem.



11063
11064
11065
11066
11067
11068
11069
# File 'lib/v20181119/models.rb', line 11063

def initialize(name=nil, value=nil, confidence=nil, itemcoord=nil, row=nil)
  @Name = name
  @Value = value
  @Confidence = confidence
  @ItemCoord = itemcoord
  @Row = row
end

Instance Attribute Details

#ConfidenceObject

坐标。

Parameters:

  • Name:

    识别出的字段名称(关键字)。

  • Value:

    识别出的字段名称对应的值。

  • Confidence:

    置信度 0 ~100。

  • ItemCoord:

    文本行在旋转纠正之后的图像中的像素

  • Row:

    字段所在行号,下标从0开始,非行字段或未能识别行号的该值返回-1。



11061
11062
11063
# File 'lib/v20181119/models.rb', line 11061

def Confidence
  @Confidence
end

#ItemCoordObject

坐标。

Parameters:

  • Name:

    识别出的字段名称(关键字)。

  • Value:

    识别出的字段名称对应的值。

  • Confidence:

    置信度 0 ~100。

  • ItemCoord:

    文本行在旋转纠正之后的图像中的像素

  • Row:

    字段所在行号,下标从0开始,非行字段或未能识别行号的该值返回-1。



11061
11062
11063
# File 'lib/v20181119/models.rb', line 11061

def ItemCoord
  @ItemCoord
end

#NameObject

坐标。

Parameters:

  • Name:

    识别出的字段名称(关键字)。

  • Value:

    识别出的字段名称对应的值。

  • Confidence:

    置信度 0 ~100。

  • ItemCoord:

    文本行在旋转纠正之后的图像中的像素

  • Row:

    字段所在行号,下标从0开始,非行字段或未能识别行号的该值返回-1。



11061
11062
11063
# File 'lib/v20181119/models.rb', line 11061

def Name
  @Name
end

#RowObject

坐标。

Parameters:

  • Name:

    识别出的字段名称(关键字)。

  • Value:

    识别出的字段名称对应的值。

  • Confidence:

    置信度 0 ~100。

  • ItemCoord:

    文本行在旋转纠正之后的图像中的像素

  • Row:

    字段所在行号,下标从0开始,非行字段或未能识别行号的该值返回-1。



11061
11062
11063
# File 'lib/v20181119/models.rb', line 11061

def Row
  @Row
end

#ValueObject

坐标。

Parameters:

  • Name:

    识别出的字段名称(关键字)。

  • Value:

    识别出的字段名称对应的值。

  • Confidence:

    置信度 0 ~100。

  • ItemCoord:

    文本行在旋转纠正之后的图像中的像素

  • Row:

    字段所在行号,下标从0开始,非行字段或未能识别行号的该值返回-1。



11061
11062
11063
# File 'lib/v20181119/models.rb', line 11061

def Value
  @Value
end

Instance Method Details

#deserialize(params) ⇒ Object



11071
11072
11073
11074
11075
11076
11077
11078
11079
11080
# File 'lib/v20181119/models.rb', line 11071

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