-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGreyscale_Conversion_PDE.pde
78 lines (63 loc) · 1.87 KB
/
Greyscale_Conversion_PDE.pde
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Written by Andrew Sink, August 2020
// https://twitter.com/AndrewASink
// Code used from contributors below
/**
* selectInput() for loadImage() in settings() (v1.1)
* GoToLoop (2016-May-19)
*
* Forum.Processing.org/two/discussion/16705/
* null-pointer-exception-when-loading-image-in-settings-p3-1-1#Item_1
*/
import controlP5.*;
ControlP5 cp5;
static final String RENDERER = JAVA2D; // JAVA2D, FX2D, P2D, P3D, OPENGL
PImage canvas;
void settings() {
selectInput("Please select canvas picture:", "selectImage");
print("Please select a picture to modify.\n");
while (canvas == null) delay(100);
size(canvas.width, canvas.height, RENDERER);
noSmooth();
noLoop();
}
void draw() {
background(canvas);
}
void selectImage(final File f) {
if (f == null || f.isDirectory()) {
println("Window was closed or the user hit cancel.");
System.exit(0);
}
final String canvasPath = f.getPath();
println(canvasPath);
print("Picture loaded successfully. Please press Enter or Return to remove color.\n");
if ((canvas = loadImage(canvasPath)) == null) {
println("is an invalid image file. Try again...\n");
selectInput("Please select canvas picture:", "selectImage");
}
}
void keyPressed() {
if (keyCode == RETURN || keyCode == ENTER) {
loadPixels();
canvas.loadPixels();
for (int x = 0; x < width; x++) {
for (int y = 0; y < height; y++) {
int loc = x+y*width;
float r = red(canvas.pixels[loc]);
float g = green(canvas.pixels[loc]);
float b = blue(canvas.pixels[loc]);
//pixels[loc] = color(r, g, b);
pixels[loc] = color(r*.3+g*.59+b*.11);
}
}
updatePixels();
print("File succesfully converted to greyscale.\nPlease click anywhere to exit program.\n");
}
else
redraw();
}
void mousePressed() {
save("Greyscale_Updated.png");
print("File saved successfully\n");
exit();
}