Skip to content

Commit

Permalink
merge in a couple of extra pull requests from devin
Browse files Browse the repository at this point in the history
  • Loading branch information
atduskgreg committed May 22, 2017
1 parent ca3c082 commit e1fc182
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions examples/MorphologyOperations/MorphologyOperations.pde
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PImage img, opened, closed, tophat;

void setup() {
img = loadImage("test.jpg");
size(img.width, img.height);
size(1280, 720);

opencv = new OpenCV(this, img);
PImage snap = opencv.getSnapshot();
Expand Down Expand Up @@ -39,5 +39,4 @@ void draw() {
text("close(16)", img.width/2 - 100, img.height/2 + 20 );
fill(255);
text("tophat(cross, 8, 8)", img.width - 150, img.height/2 + 20 );
}

}
2 changes: 1 addition & 1 deletion resources/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ source.repository=https://github.com/atduskgreg/opencv-processing
# This is used to compare different versions of the same library, and check if
# an update is available.

library.version=16
library.version=17


# The version as the user will see it.
Expand Down

0 comments on commit e1fc182

Please sign in to comment.