com.volcengine.model.imagex.v2.GetImagePSDetectionBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.imagex.v2;
import com.alibaba.fastjson.JSON;
/**
* GetImagePSDetectionBody
*/
@lombok.Data
public final class GetImagePSDetectionBody {
/**
* 原图的存储 URI。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ImageUri")
private String imageUri;
/**
* 调用方法,默认为调用全部方法,若参数不为`all`,则其他方法仅可选一种。取值如下所示:
*
* - all:调用所有方法
*
* - ela:误差水平分析方法
*
* - na:噪声分析方法
*
* - he:基于颜色分布直方图均化的图像增强分析方法
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Method")
private String method;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy