forked from atduskgreg/opencv-processing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageDiff.pde
More file actions
37 lines (30 loc) · 811 Bytes
/
ImageDiff.pde
File metadata and controls
37 lines (30 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import gab.opencv.*;
OpenCV opencv;
PImage before, after, grayDiff;
//PImage colorDiff;
void setup() {
before = loadImage("before.jpg");
after = loadImage("after.jpg");
size(640, 480);
opencv = new OpenCV(this, before);
opencv.diff(after);
grayDiff = opencv.getSnapshot();
// opencv.useColor();
// opencv.loadImage(after);
// opencv.diff(after);
// colorDiff = opencv.getSnapshot();
}
void draw() {
pushMatrix();
scale(0.5);
image(before, 0, 0);
image(after, before.width, 0);
// image(colorDiff, 0, before.height);
image(grayDiff, before.width, before.height);
popMatrix();
fill(255);
text("before", 10, 20);
text("after", before.width/2 +10, 20);
text("gray diff", before.width/2 + 10, before.height/2+ 20);
// text("color diff", 10, before.height/2+ 20);
}