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.



1927
1928
1929
1930
1931
# File 'lib/v20190612/models.rb', line 1927

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:

    置信度。



1925
1926
1927
# File 'lib/v20190612/models.rb', line 1925

def Confidence
  @Confidence
end

#OutputStorageObject

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

Parameters:

  • Path:

    视频智能横转竖列表

  • OutputStorage:

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

  • Confidence:

    置信度。



1925
1926
1927
# File 'lib/v20190612/models.rb', line 1925

def OutputStorage
  @OutputStorage
end

#PathObject

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

Parameters:

  • Path:

    视频智能横转竖列表

  • OutputStorage:

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

  • Confidence:

    置信度。



1925
1926
1927
# File 'lib/v20190612/models.rb', line 1925

def Path
  @Path
end

Instance Method Details

#deserialize(params) ⇒ Object



1933
1934
1935
1936
1937
1938
1939
1940
# File 'lib/v20190612/models.rb', line 1933

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