com.volcengine.service.visual.model.response.VisualCarPlateDetectionResponse 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 VisualCarPlateDetectionResponse extends VisualBaseResponse {
@JSONField(name = "data")
CarPlateDetectionData data;
@Data
public static class CarPlateDetectionData {
@JSONField(name = "car_plate_box")
List carPlateBox;
}
@Data
public static class CarPlateBoxItem {
@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