All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencentcloudapi.cme.v20191029.models.VideoSegmentationProjectInput Maven / Gradle / Ivy

/*
 * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.tencentcloudapi.cme.v20191029.models;

import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class VideoSegmentationProjectInput extends AbstractModel{

    /**
    * 画布宽高比,取值有:
  • 16:9;
  • 9:16;
  • 2:1。
  • 默认值 16:9 。 */ @SerializedName("AspectRatio") @Expose private String AspectRatio; /** * 视频拆条处理模型,不填则默认为手工分割视频。取值 :
  • AI.GameHighlights.PUBG:和平精英集锦 ;
  • AI.GameHighlights.Honor OfKings:王者荣耀集锦 ;
  • AI.SportHighlights.Football:足球集锦
  • AI.SportHighlights.Basketball:篮球集锦 ;
  • AI.PersonSegmentation:人物集锦 ;
  • AI.NewsSegmentation:新闻拆条。
  • */ @SerializedName("ProcessModel") @Expose private String ProcessModel; /** * Get 画布宽高比,取值有:
  • 16:9;
  • 9:16;
  • 2:1。
  • 默认值 16:9 。 * @return AspectRatio 画布宽高比,取值有:
  • 16:9;
  • 9:16;
  • 2:1。
  • 默认值 16:9 。 */ public String getAspectRatio() { return this.AspectRatio; } /** * Set 画布宽高比,取值有:
  • 16:9;
  • 9:16;
  • 2:1。
  • 默认值 16:9 。 * @param AspectRatio 画布宽高比,取值有:
  • 16:9;
  • 9:16;
  • 2:1。
  • 默认值 16:9 。 */ public void setAspectRatio(String AspectRatio) { this.AspectRatio = AspectRatio; } /** * Get 视频拆条处理模型,不填则默认为手工分割视频。取值 :
  • AI.GameHighlights.PUBG:和平精英集锦 ;
  • AI.GameHighlights.Honor OfKings:王者荣耀集锦 ;
  • AI.SportHighlights.Football:足球集锦
  • AI.SportHighlights.Basketball:篮球集锦 ;
  • AI.PersonSegmentation:人物集锦 ;
  • AI.NewsSegmentation:新闻拆条。
  • * @return ProcessModel 视频拆条处理模型,不填则默认为手工分割视频。取值 :
  • AI.GameHighlights.PUBG:和平精英集锦 ;
  • AI.GameHighlights.Honor OfKings:王者荣耀集锦 ;
  • AI.SportHighlights.Football:足球集锦
  • AI.SportHighlights.Basketball:篮球集锦 ;
  • AI.PersonSegmentation:人物集锦 ;
  • AI.NewsSegmentation:新闻拆条。
  • */ public String getProcessModel() { return this.ProcessModel; } /** * Set 视频拆条处理模型,不填则默认为手工分割视频。取值 :
  • AI.GameHighlights.PUBG:和平精英集锦 ;
  • AI.GameHighlights.Honor OfKings:王者荣耀集锦 ;
  • AI.SportHighlights.Football:足球集锦
  • AI.SportHighlights.Basketball:篮球集锦 ;
  • AI.PersonSegmentation:人物集锦 ;
  • AI.NewsSegmentation:新闻拆条。
  • * @param ProcessModel 视频拆条处理模型,不填则默认为手工分割视频。取值 :
  • AI.GameHighlights.PUBG:和平精英集锦 ;
  • AI.GameHighlights.Honor OfKings:王者荣耀集锦 ;
  • AI.SportHighlights.Football:足球集锦
  • AI.SportHighlights.Basketball:篮球集锦 ;
  • AI.PersonSegmentation:人物集锦 ;
  • AI.NewsSegmentation:新闻拆条。
  • */ public void setProcessModel(String ProcessModel) { this.ProcessModel = ProcessModel; } public VideoSegmentationProjectInput() { } /** * NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy, * and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy. */ public VideoSegmentationProjectInput(VideoSegmentationProjectInput source) { if (source.AspectRatio != null) { this.AspectRatio = new String(source.AspectRatio); } if (source.ProcessModel != null) { this.ProcessModel = new String(source.ProcessModel); } } /** * Internal implementation, normal users should not use it. */ public void toMap(HashMap map, String prefix) { this.setParamSimple(map, prefix + "AspectRatio", this.AspectRatio); this.setParamSimple(map, prefix + "ProcessModel", this.ProcessModel); } }




    © 2015 - 2025 Weber Informatics LLC | Privacy Policy