com.aliyuncs.imageprocess.model.v20200320.DetectLungNoduleResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-imageprocess Show documentation
Show all versions of aliyun-java-sdk-imageprocess Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* 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.aliyuncs.imageprocess.model.v20200320;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.imageprocess.transform.v20200320.DetectLungNoduleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DetectLungNoduleResponse extends AcsResponse {
private String requestId;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private List series;
public List getSeries() {
return this.series;
}
public void setSeries(List series) {
this.series = series;
}
public static class Serie {
private String seriesInstanceUid;
private List elements;
private List origin;
private List spacing;
public String getSeriesInstanceUid() {
return this.seriesInstanceUid;
}
public void setSeriesInstanceUid(String seriesInstanceUid) {
this.seriesInstanceUid = seriesInstanceUid;
}
public List getElements() {
return this.elements;
}
public void setElements(List elements) {
this.elements = elements;
}
public List getOrigin() {
return this.origin;
}
public void setOrigin(List origin) {
this.origin = origin;
}
public List getSpacing() {
return this.spacing;
}
public void setSpacing(List spacing) {
this.spacing = spacing;
}
public static class Element {
private String category;
private Float confidence;
private Float diameter;
private String lobe;
private String lung;
private Float x;
private Float z;
private Float y;
private Float imageX;
private Float imageY;
private Float imageZ;
public String getCategory() {
return this.category;
}
public void setCategory(String category) {
this.category = category;
}
public Float getConfidence() {
return this.confidence;
}
public void setConfidence(Float confidence) {
this.confidence = confidence;
}
public Float getDiameter() {
return this.diameter;
}
public void setDiameter(Float diameter) {
this.diameter = diameter;
}
public String getLobe() {
return this.lobe;
}
public void setLobe(String lobe) {
this.lobe = lobe;
}
public String getLung() {
return this.lung;
}
public void setLung(String lung) {
this.lung = lung;
}
public Float getX() {
return this.x;
}
public void setX(Float x) {
this.x = x;
}
public Float getZ() {
return this.z;
}
public void setZ(Float z) {
this.z = z;
}
public Float getY() {
return this.y;
}
public void setY(Float y) {
this.y = y;
}
public Float getImageX() {
return this.imageX;
}
public void setImageX(Float imageX) {
this.imageX = imageX;
}
public Float getImageY() {
return this.imageY;
}
public void setImageY(Float imageY) {
this.imageY = imageY;
}
public Float getImageZ() {
return this.imageZ;
}
public void setImageZ(Float imageZ) {
this.imageZ = imageZ;
}
}
}
}
@Override
public DetectLungNoduleResponse getInstance(UnmarshallerContext context) {
return DetectLungNoduleResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy