Add File
This commit is contained in:
58
src/main/java/org/dromara/easyai/yolo/OutBox.java
Normal file
58
src/main/java/org/dromara/easyai/yolo/OutBox.java
Normal file
@@ -0,0 +1,58 @@
|
||||
package org.dromara.easyai.yolo;
|
||||
|
||||
public class OutBox {
|
||||
private int x;//横坐标
|
||||
private int y;//纵坐标
|
||||
private int width;//宽度
|
||||
private int height;//高度
|
||||
private String typeID;//类别id
|
||||
private float trust;
|
||||
|
||||
public float getTrust() {
|
||||
return trust;
|
||||
}
|
||||
|
||||
public void setTrust(float trust) {
|
||||
this.trust = trust;
|
||||
}
|
||||
|
||||
public int getX() {
|
||||
return x;
|
||||
}
|
||||
|
||||
public void setX(int x) {
|
||||
this.x = x;
|
||||
}
|
||||
|
||||
public int getY() {
|
||||
return y;
|
||||
}
|
||||
|
||||
public void setY(int y) {
|
||||
this.y = y;
|
||||
}
|
||||
|
||||
public int getWidth() {
|
||||
return width;
|
||||
}
|
||||
|
||||
public void setWidth(int width) {
|
||||
this.width = width;
|
||||
}
|
||||
|
||||
public int getHeight() {
|
||||
return height;
|
||||
}
|
||||
|
||||
public void setHeight(int height) {
|
||||
this.height = height;
|
||||
}
|
||||
|
||||
public String getTypeID() {
|
||||
return typeID;
|
||||
}
|
||||
|
||||
public void setTypeID(String typeID) {
|
||||
this.typeID = typeID;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user