Skip to content

Commit

Permalink
synching with dev
Browse files Browse the repository at this point in the history
  • Loading branch information
supertick committed Nov 5, 2023
1 parent c6a518d commit efe51db
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,4 @@ build/
/.factorypath
start.yml
/config

2 changes: 1 addition & 1 deletion README.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ <h2>Starting MyRobotLab</h2>
<h2>Help</h2>
<p><a href="https://discord.gg/AfScp5x8r5">Discord Channel</a></p><br/>
</body>
</html>
</html>
8 changes: 8 additions & 0 deletions src/main/java/org/myrobotlab/document/Classification.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,14 @@ public BufferedImage getImage() {
return null;
}

public void setObject(Object frame) {
setField("imageObject", frame);
}

public Object getObject() {
return getValue("imageObject");
}

public void setBoundingBox(Rectangle rect) {
setField("bounding_box", rect);
}
Expand Down

0 comments on commit efe51db

Please sign in to comment.