mirror of
https://github.com/geekwenjie/SmartJavaAI.git
synced 2026-09-14 22:18:42 +00:00
新增目标检测功能
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package cn.smartjavaai.common.entity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 检测结果
|
||||
* @author dwj
|
||||
* @date 2025/4/12
|
||||
*/
|
||||
public class DetectionResponse {
|
||||
|
||||
private List<DetectionRectangle> rectangleList;
|
||||
|
||||
public List<DetectionRectangle> getRectangleList() {
|
||||
return rectangleList;
|
||||
}
|
||||
|
||||
public void setRectangleList(List<DetectionRectangle> rectangleList) {
|
||||
this.rectangleList = rectangleList;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user