Class: TencentCloud::Mps::V20190612::AiAnalysisTaskHorizontalToVerticalOutput

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

Overview

智能横转竖结果信息

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path = nil, outputstorage = nil, confidence = nil) ⇒ AiAnalysisTaskHorizontalToVerticalOutput

Returns a new instance of AiAnalysisTaskHorizontalToVerticalOutput.



1896
1897
1898
1899
1900
# File 'lib/v20190612/models.rb', line 1896

def initialize(path=nil, outputstorage=nil, confidence=nil)
  @Path = path
  @OutputStorage = outputstorage
  @Confidence = confidence
end

Instance Attribute Details

#ConfidenceObject

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

Parameters:

  • Path:

    视频智能横转竖列表

  • OutputStorage:

    智能横转竖视频的存储位置

  • Confidence:

    置信度。



1894
1895
1896
# File 'lib/v20190612/models.rb', line 1894

def Confidence
  @Confidence
end

#OutputStorageObject

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

Parameters:

  • Path:

    视频智能横转竖列表

  • OutputStorage:

    智能横转竖视频的存储位置

  • Confidence:

    置信度。



1894
1895
1896
# File 'lib/v20190612/models.rb', line 1894

def OutputStorage
  @OutputStorage
end

#PathObject

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

Parameters:

  • Path:

    视频智能横转竖列表

  • OutputStorage:

    智能横转竖视频的存储位置

  • Confidence:

    置信度。



1894
1895
1896
# File 'lib/v20190612/models.rb', line 1894

def Path
  @Path
end

Instance Method Details

#deserialize(params) ⇒ Object



1902
1903
1904
1905
1906
1907
1908
1909
# File 'lib/v20190612/models.rb', line 1902

def deserialize(params)
  @Path = params['Path']
  unless params['OutputStorage'].nil?
    @OutputStorage = TaskOutputStorage.new
    @OutputStorage.deserialize(params['OutputStorage'])
  end
  @Confidence = params['Confidence']
end