com.volcengine.service.visual.model.response.VisualCarDetectionResponse 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.service.visual.model.response;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.List;
@Data
public class VisualCarDetectionResponse extends VisualBaseResponse {
@JSONField(name = "data")
CarDetectionData data;
@Data
public static class CarDetectionData {
@JSONField(name = "car_box")
List carBox;
}
@Data
public static class CarBoxItem {
@JSONField(name = "min_x")
Integer minX;
@JSONField(name = "min_y")
Integer minY;
@JSONField(name = "max_x")
Integer maxX;
@JSONField(name = "max_y")
Integer maxY;
@JSONField(name = "score")
Float score;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy