Class: TencentCloud::Mps::V20190612::AiAnalysisTaskCutoutOutput

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) ⇒ AiAnalysisTaskCutoutOutput

Returns a new instance of AiAnalysisTaskCutoutOutput.



1318
1319
1320
1321
# File 'lib/v20190612/models.rb', line 1318

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

Instance Attribute Details

#OutputStorageObject

Parameters:

  • Path:

    视频智能抠图文件路径。

  • OutputStorage:

    视频智能抠图的存储位置。



1316
1317
1318
# File 'lib/v20190612/models.rb', line 1316

def OutputStorage
  @OutputStorage
end

#PathObject

Parameters:

  • Path:

    视频智能抠图文件路径。

  • OutputStorage:

    视频智能抠图的存储位置。



1316
1317
1318
# File 'lib/v20190612/models.rb', line 1316

def Path
  @Path
end

Instance Method Details

#deserialize(params) ⇒ Object



1323
1324
1325
1326
1327
1328
1329
# File 'lib/v20190612/models.rb', line 1323

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