初始提交

This commit is contained in:
dengwenjie
2025-02-21 11:26:58 +08:00
commit 28f55e85cc
17 changed files with 1442 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ink.numberone</groupId>
<artifactId>smartjavaai-parent</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>smartjavaai-common</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>

View File

@@ -0,0 +1,42 @@
package cn.smartjavaai.common.entity;
import ai.djl.util.JsonUtils;
import java.io.Serializable;
/**
* 点
* @author dwj
* @date 2025/2/19
*/
public class Point implements Serializable {
private static final long serialVersionUID = 1L;
private int x;
private int y;
public Point(int x, int y) {
this.x = x;
this.y = y;
}
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;
}
@Override
public String toString() {
return JsonUtils.GSON_COMPACT.toJson(this);
}
}

View File

@@ -0,0 +1,50 @@
package cn.smartjavaai.common.entity;
import java.util.List;
/**
* 矩形区域
* @author dwj
* @date 2025/2/19
*/
public class Rectangle {
/**
* 矩形区域点集合
*/
List<Point> pointList;
/**
* 矩形区域宽度
*/
int width;
/**
* 矩形区域高度
*/
int height;
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 List<Point> getPointList() {
return pointList;
}
public void setPointList(List<Point> pointList) {
this.pointList = pointList;
}
}