-
Notifications
You must be signed in to change notification settings - Fork 0
/
ImageProcessing.java
345 lines (277 loc) · 12.7 KB
/
ImageProcessing.java
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.swing.*;
import java.awt.GridLayout;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class ImageProcessing extends JFrame {
BufferedImage originalImage, filteredImage;
JPanel imagesPanel = new JPanel();
JPanel optionPanel = new JPanel();
JLabel originaImageLabel = new JLabel();
JLabel filteredImageLabel = new JLabel();
JComboBox filtersList;
ImageProcessing(){
super("Filtros de Imagem");
readImage("lena.png");
// readImage("waterlilies.jpg");
filteredImage = grayscale(originalImage);
filteredImageLabel.setIcon(new ImageIcon(filteredImage));
imagesPanel.add(originaImageLabel, BorderLayout.WEST);
imagesPanel.add(filteredImageLabel, BorderLayout.EAST);
String[] filters = {"Grayscale", "Sepia", "Solarize", "Gaussian Blur", "Laplace Edge Detector"};
filtersList = new JComboBox<String>(filters);
filtersList.setSelectedIndex(0);
optionPanel.add(filtersList);
add(imagesPanel, BorderLayout.NORTH);
add(optionPanel, BorderLayout.SOUTH);
filtersList.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
changeFilter();
}
});
setDefaultCloseOperation(EXIT_ON_CLOSE);
setResizable(false);
pack();
setVisible(true);
}
public static void main (String[] args) {
new ImageProcessing();
}
private void readImage(String path){
try {
originalImage = ImageIO.read(new File(path));
} catch (Exception e){
JOptionPane.showMessageDialog(null, "Something get wrong while trying read the image: " + e.toString());
System.exit(0);
}
originaImageLabel.setIcon(new ImageIcon(originalImage));
}
// BufferedImage copyImage(BufferedImage source){
// BufferedImage copy = new BufferedImage(source.getWidth(), source.getHeight(), source.getType());
// Graphics2D g = copy.createGraphics();
// g.drawImage(source, 0, 0, null);
// g.dispose();
// return copy;
// }
void changeFilter(){
int filter = filtersList.getSelectedIndex();
switch(filter){
case 0: filteredImage = grayscale(originalImage); break;
case 1: filteredImage = sepia(originalImage); break;
case 2: filteredImage = solarize(originalImage); break;
case 3: filteredImage = gaussianBlur(originalImage); break;
case 4: filteredImage = laplaceEdgeDetector(originalImage); break;
}
filteredImageLabel.setIcon(new ImageIcon(filteredImage));
}
/* grayscale filter
grayscale image achieved by using color's luminance,
where luminance is calculated from a RGB value
using the following formula: L = .0299 * R + 0.587 * G + 0.114 * B.
Source: (MSDN) https://msdn.microsoft.com/en-us/library/bb332387.aspx#tbconimagecolorizer_grayscaleconversion
*/
BufferedImage grayscale(BufferedImage image){
int i, j, rows, columns, pixel, red, green, blue, gray;
rows = image.getHeight();
columns = image.getWidth();
BufferedImage gsImage = new BufferedImage(columns, rows, BufferedImage.TYPE_INT_RGB);
for (i = 0; i < columns; i++){
for (j = 0; j < rows; j++){
pixel = image.getRGB(i, j);
red = (pixel >> 16) & 0xff;
green = (pixel >> 8) & 0xff;
blue = pixel & 0xff;
gray = (int) (0.299 * red + 0.587 * green + 0.114 * blue);
gsImage.setRGB(i, j, (gray << 16) + (gray << 8) + gray);
}
}
return gsImage;
}
// sepia filter
BufferedImage sepia(BufferedImage image){
int i, j, rows, columns, pixel, red, green, blue;
int outputRed, outputGreen, outputBlue;
rows = image.getHeight();
columns = image.getWidth();
BufferedImage spImage = new BufferedImage(columns, rows, BufferedImage.TYPE_INT_RGB);
for (i = 0; i < columns; i++){
for (j = 0; j < rows; j++){
pixel = image.getRGB(i, j);
red = (pixel >> 16) & 0xff;
green = (pixel >> 8) & 0xff;
blue = pixel & 0xff;
// convert RGB values to sepia
outputRed = (int) (.393 * red + .769 * green + .189 * blue);
outputGreen = (int) (.349 * red + .686 * green + .168 * blue);
outputBlue = (int) (.272 * red + .534 * green + .131 * blue);
// if any output values is greater than 255, set it to 255
outputRed = (outputRed > 255) ? 255 : outputRed;
outputGreen = (outputGreen > 255) ? 255 : outputGreen;
outputBlue = (outputBlue > 255) ? 255 : outputBlue;
spImage.setRGB(i, j, (outputRed << 16) + (outputGreen << 8) + outputBlue);
}
}
return spImage;
}
// solarize filter
BufferedImage solarize(BufferedImage image){
int i, j, rows, columns, pixel, red, green, blue;
int intensity, threshold = 140;
rows = image.getHeight();
columns = image.getWidth();
BufferedImage szImage = new BufferedImage(columns, rows, BufferedImage.TYPE_INT_RGB);
for (i = 0; i < columns; i++){
for (j = 0; j < rows; j++){
pixel = image.getRGB(i, j);
red = (pixel >> 16) & 0xff;
green = (pixel >> 8) & 0xff;
blue = pixel & 0xff;
intensity = (int) (0.299 * red + 0.587 * green + 0.114 * blue);
if (intensity < threshold) {
red = 255 - red;
green = 255 - green;
blue = 255 - blue;
}
szImage.setRGB(i, j, (red << 16) + (green << 8) + blue);
}
}
return szImage;
}
BufferedImage gaussianBlur(BufferedImage image){
int i, j, rows, columns, pixel, red, green, blue;
// variables to iterate the kernel
int x, y, n, level;
// 3x3 gaussian kernel
int[][] kernel = {{1,2,1},
{2,4,2},
{1,2,1}};
// variables to navigate the neighborhood pixels
int xNeighborhood, yNeighborhood;
rows = image.getHeight();
columns = image.getWidth();
n = kernel.length;
level = n/2;
BufferedImage blurredImage = new BufferedImage(columns, rows, BufferedImage.TYPE_INT_RGB);
// iterate each pixel in the image
for (i = 0; i < columns; i++){
for (j = 0; j < rows; j++){
red = 0;
green = 0;
blue = 0;
// iterate each pixel in the kernel
for (x = 0; x < n; x++) {
for (y = 0; y < n; y++){
xNeighborhood = i + x - level;
yNeighborhood = j + y - level;
// checks if x and y are out of bounds of the image
if (xNeighborhood < 0 && yNeighborhood < 0){
xNeighborhood = columns - 1;
yNeighborhood = rows - 1;
} else if (xNeighborhood < 0 && yNeighborhood == rows){
xNeighborhood = columns - 1;
yNeighborhood = 0;
} else if (xNeighborhood == columns && yNeighborhood < 0){
xNeighborhood = 0;
yNeighborhood = rows - 1;
} else if (xNeighborhood == columns && yNeighborhood == rows){
xNeighborhood = 0;
yNeighborhood = 0;
} else if (xNeighborhood < 0 && yNeighborhood >= 0) {
xNeighborhood = columns - 1;
} else if (xNeighborhood == columns && yNeighborhood >= 0){
xNeighborhood = 0;
} else if (xNeighborhood >= 0 && yNeighborhood < 0){
yNeighborhood = rows - 1;
} else if (xNeighborhood >= 0 && yNeighborhood == rows){
yNeighborhood = 0;
}
pixel = image.getRGB(xNeighborhood, yNeighborhood);
red += ((pixel >> 16) & 0xff) * kernel[x][y] / 16;
green += ((pixel >> 8) & 0xff) * kernel[x][y] / 16;
blue += (pixel & 0xff) * kernel[x][y] / 16;
}
}
if (red > 255) red = 255;
else if (red < 0) red = 0;
if (green > 255) green = 255;
else if (green < 0) green = 0;
if (blue > 255) blue = 255;
else if (blue < 0) blue = 0;
blurredImage.setRGB(i, j, (red << 16) + (green << 8) + blue);
}
}
return blurredImage;
}
BufferedImage laplaceEdgeDetector(BufferedImage image){
int i, j, rows, columns, pixel, red, green, blue;
// variables to iterate the kernel
int x, y, n, level;
// 3x3 laplacian kernel
int[][] kernel = {{-1,-1,-1},
{-1,8,-1},
{-1,-1,-1}};
// variables to navigate the neighborhood pixels
int xNeighborhood, yNeighborhood;
rows = image.getHeight();
columns = image.getWidth();
n = kernel.length;
level = n/2;
BufferedImage blurredImage = gaussianBlur(image);
BufferedImage laplaceImage = new BufferedImage(columns, rows, BufferedImage.TYPE_INT_RGB);
// iterate each pixel in the image
for (i = 0; i < columns; i++){
for (j = 0; j < rows; j++){
red = 0;
green = 0;
blue = 0;
// iterate each pixel in the kernel
for (x = 0; x < n; x++) {
for (y = 0; y < n; y++){
xNeighborhood = i + x - level;
yNeighborhood = j + y - level;
// checks if x and y are out of bounds of the image
if (xNeighborhood < 0 && yNeighborhood < 0){
xNeighborhood = columns - 1;
yNeighborhood = rows - 1;
} else if (xNeighborhood < 0 && yNeighborhood == rows){
xNeighborhood = columns - 1;
yNeighborhood = 0;
} else if (xNeighborhood == columns && yNeighborhood < 0){
xNeighborhood = 0;
yNeighborhood = rows - 1;
} else if (xNeighborhood == columns && yNeighborhood == rows){
xNeighborhood = 0;
yNeighborhood = 0;
} else if (xNeighborhood < 0 && yNeighborhood >= 0) {
xNeighborhood = columns - 1;
} else if (xNeighborhood == columns && yNeighborhood >= 0){
xNeighborhood = 0;
} else if (xNeighborhood >= 0 && yNeighborhood < 0){
yNeighborhood = rows - 1;
} else if (xNeighborhood >= 0 && yNeighborhood == rows){
yNeighborhood = 0;
}
pixel = blurredImage.getRGB(xNeighborhood, yNeighborhood);
red += ((pixel >> 16) & 0xff) * kernel[x][y];
green += ((pixel >> 8) & 0xff) * kernel[x][y];
blue += (pixel & 0xff) * kernel[x][y];
}
}
if (red > 255) red = 255;
else if (red < 0) red = 0;
if (green > 255) green = 255;
else if (green < 0) green = 0;
if (blue > 255) blue = 255;
else if (blue < 0) blue = 0;
laplaceImage.setRGB(i, j, (red << 16) + (green << 8) + blue);
}
}
return laplaceImage;
}
}