Skip to content

Commit e1fc182

Browse files
committed
merge in a couple of extra pull requests from devin
1 parent ca3c082 commit e1fc182

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

examples/MorphologyOperations/MorphologyOperations.pde

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PImage img, opened, closed, tophat;
77

88
void setup() {
99
img = loadImage("test.jpg");
10-
size(img.width, img.height);
10+
size(1280, 720);
1111

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

resources/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ source.repository=https://github.com/atduskgreg/opencv-processing
149149
# This is used to compare different versions of the same library, and check if
150150
# an update is available.
151151

152-
library.version=16
152+
library.version=17
153153

154154

155155
# The version as the user will see it.

0 commit comments

Comments
 (0)