Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy Spann committed Dec 5, 2018
1 parent dc0911f commit 6828d7a
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 22 deletions.
38 changes: 18 additions & 20 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified nifi-mxnetinference-nar/target/nifi-mxnetinference-nar-1.0.nar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ public void process(final InputStream input, final java.io.OutputStream out) thr
try {
// Draw on the buffered image
g2d.setStroke(new BasicStroke(3));
g2d.setColor(java.awt.Color.black);
g2d.drawRect(Math.round(result.getXmax()), Math.round(result.getYmax()),
g2d.setColor(Color.GREEN);
g2d.drawRect(Math.round(result.getXmin()), Math.round(result.getYmin()),
Math.round(result.getWidth()),
Math.round(result.getHeight()));
g2d.dispose();
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit 6828d7a

Please sign in to comment.