class TencentCloud::Ims::V20200713::ObjectDetail

实体检测结果明细,当检测场景为实体、广告台标、二维码时表示模型检测目标框的标签名称、标签值、标签分数以及检测框的位置信息。

def deserialize(params)

def deserialize(params)
  @Id = params['Id']
  @Name = params['Name']
  @Value = params['Value']
  @Score = params['Score']
  unless params['Location'].nil?
    @Location = Location.new
    @Location.deserialize(params['Location'])
  end
  @SubLabel = params['SubLabel']
  @GroupId = params['GroupId']
  @ObjectId = params['ObjectId']
end

def initialize(id=nil, name=nil, value=nil, score=nil, location=nil, sublabel=nil, groupid=nil, objectid=nil)

def initialize(id=nil, name=nil, value=nil, score=nil, location=nil, sublabel=nil, groupid=nil, objectid=nil)
  @Id = id
  @Name = name
  @Value = value
  @Score = score
  @Location = location
  @SubLabel = sublabel
  @GroupId = groupid
  @ObjectId = objectid
end