-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
423 lines (360 loc) · 18.9 KB
/
Main.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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
import java.awt.Color;
import java.util.Random;
import java.util.logging.Level;
import java.util.logging.Logger;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Odz
*/
public class Main extends javax.swing.JFrame {
/**
* Creates new form Main
*/
public Main() {
initComponents();
imgFileOut = new SaveFile(); // affect there : qwewq
this.Edit.setEnabled(false);
this.mnSave.setEnabled(false);
this.mnClose.setEnabled(false);
this.mnHistogram.setEnabled(false);
OlahFile.direktoriDefault="D:\\";
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jScrollPane1 = new javax.swing.JScrollPane();
citraAsal = new javax.swing.JLabel();
jScrollPane2 = new javax.swing.JScrollPane();
citraManip = new javax.swing.JLabel();
jMenuBar1 = new javax.swing.JMenuBar();
File = new javax.swing.JMenu();
mnOpen = new javax.swing.JMenuItem();
mnSave = new javax.swing.JMenuItem();
mnClose = new javax.swing.JMenuItem();
mnExit = new javax.swing.JMenuItem();
Edit = new javax.swing.JMenu();
mnToGray = new javax.swing.JMenuItem();
mnKonvlousi = new javax.swing.JMenuItem();
mnReset = new javax.swing.JMenuItem();
Options = new javax.swing.JMenu();
mnGantiDefaultDirektori = new javax.swing.JMenuItem();
mnGantiMatriksMask = new javax.swing.JMenuItem();
mnHistogram = new javax.swing.JMenuItem();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setTitle("Olah Citra");
setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));
jScrollPane1.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory.createEtchedBorder(), "Original"));
citraAsal.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jScrollPane1.setViewportView(citraAsal);
jScrollPane2.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory.createEtchedBorder(), "Original"));
citraManip.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jScrollPane2.setViewportView(citraManip);
File.setText("File");
mnOpen.setAccelerator(javax.swing.KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_O, java.awt.event.InputEvent.CTRL_MASK));
mnOpen.setText("Open");
mnOpen.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnOpenActionPerformed(evt);
}
});
File.add(mnOpen);
mnOpen.getAccessibleContext().setAccessibleParent(File);
mnSave.setAccelerator(javax.swing.KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_S, java.awt.event.InputEvent.CTRL_MASK));
mnSave.setText("Save");
mnSave.setEnabled(false);
mnSave.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnSaveActionPerformed(evt);
}
});
File.add(mnSave);
mnSave.getAccessibleContext().setAccessibleParent(File);
mnClose.setText("Close");
mnClose.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnCloseActionPerformed(evt);
}
});
File.add(mnClose);
mnExit.setAccelerator(javax.swing.KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_Q, java.awt.event.InputEvent.CTRL_MASK));
mnExit.setText("Exit");
mnExit.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnExitActionPerformed(evt);
}
});
File.add(mnExit);
mnExit.getAccessibleContext().setAccessibleParent(File);
jMenuBar1.add(File);
Edit.setText("Edit");
Edit.setEnabled(false);
mnToGray.setText("Grayscale");
mnToGray.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnToGrayActionPerformed(evt);
}
});
Edit.add(mnToGray);
mnToGray.getAccessibleContext().setAccessibleParent(Edit);
mnKonvlousi.setText("Konvolusi");
mnKonvlousi.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnKonvlousiActionPerformed(evt);
}
});
Edit.add(mnKonvlousi);
mnKonvlousi.getAccessibleContext().setAccessibleParent(Edit);
mnReset.setText("Reset");
mnReset.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnResetActionPerformed(evt);
}
});
Edit.add(mnReset);
jMenuBar1.add(Edit);
Options.setText("Options");
mnGantiDefaultDirektori.setText("Ganti Direktori Default");
mnGantiDefaultDirektori.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnGantiDefaultDirektoriActionPerformed(evt);
}
});
Options.add(mnGantiDefaultDirektori);
mnGantiMatriksMask.setText("Ganti Kernel");
mnGantiMatriksMask.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnGantiMatriksMaskActionPerformed(evt);
}
});
Options.add(mnGantiMatriksMask);
mnHistogram.setText("Histogram");
mnHistogram.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnHistogramActionPerformed(evt);
}
});
Options.add(mnHistogram);
jMenuBar1.add(Options);
setJMenuBar(jMenuBar1);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 301, Short.MAX_VALUE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jScrollPane2, javax.swing.GroupLayout.DEFAULT_SIZE, 293, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jScrollPane1)
.addComponent(jScrollPane2, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 435, Short.MAX_VALUE)
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void mnOpenActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnOpenActionPerformed
try {
// TODO add your handling code here:
imgFile = new BukaFile().getFile();
imgFileOut.setPath(imgFile); // affect there : qwewq
imgAsli = new Citra(imgFile);
imgManipulasi = new Citra(imgFile);
this.citraAsal.setIcon(new TampilCitra(imgFile).getImage());
this.mnSave.setEnabled(true);
//jScrollPane1.getViewport().add(new tampilCitra(imgFile).getImage());
jScrollPane1.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory
.createEtchedBorder(), String.format("Original (%s)", imgFile.getPath())));
this.citraManip.setIcon(new TampilCitra(imgFile).getImage());
//jScrollPane2.getViewport().add(new tampilCitra(imgFile).getImage());
jScrollPane2.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory
.createEtchedBorder(), String.format("Original (%s)", imgFile.getPath())));
this.Edit.setEnabled(true);
this.mnClose.setEnabled(true);
this.mnHistogram.setEnabled(true);
} catch (Exception ex) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
}
}//GEN-LAST:event_mnOpenActionPerformed
private void mnToGrayActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnToGrayActionPerformed
// TODO add your handling code here:
Proses imgGray = new Grayscale();
imgGray.proses(imgManipulasi.getCitra());
imgManipulasi.setCitra(imgGray.getCitra());
imgGray.bersihkan();
this.citraManip.setIcon(new TampilCitra(imgManipulasi.getCitra()).getImage());
//mengecek apakah imgManipulasi pernah disave atau tidak
//pengaruh pada title di scroll pane
if(!imgFileOut.getPath().equals(imgFile.getPath())) {
jScrollPane2.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory
.createEtchedBorder(), String.format("Manipulated* (%s)", imgFileOut.getPath()))); // affect there : qwewq
} else {
jScrollPane2.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory
.createEtchedBorder(), String.format("Manipulated* (%s)", imgFile.getPath())));
}
}//GEN-LAST:event_mnToGrayActionPerformed
private void mnSaveActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnSaveActionPerformed
// TODO add your handling code here:
// mengecek apakah imgManipulasi pernah dimanipulasi x_x
//pengaruh pada title di scroll pane dan gambar yang ditampilkan pada label
if(Citra.manipulated) {
imgFileOut.save(imgManipulasi.getCitra(), OlahFile.direktoriDefault);
if(imgFileOut.getPath() != null) {
this.citraManip.setIcon(new TampilCitra(new java.io.File(imgFileOut.getPath())).getImage());
jScrollPane2.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory
.createEtchedBorder(), String.format("Manipulated (%s)", imgFileOut.getPath())));
}
} else {
imgFileOut.save(imgAsli.getCitra(), OlahFile.direktoriDefault);
if(imgFileOut.getPath() != null) {
this.citraManip.setIcon(new TampilCitra(new java.io.File(imgFileOut.getPath())).getImage());
jScrollPane2.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory
.createEtchedBorder(), String.format("Original (%s)", imgFileOut.getPath())));
}
}
}//GEN-LAST:event_mnSaveActionPerformed
private void mnKonvlousiActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnKonvlousiActionPerformed
// TODO add your handling code here:
Proses imgKonvolusi = new Konvolusi();
imgKonvolusi.proses(imgManipulasi.getCitra());
imgManipulasi.setCitra(imgKonvolusi.getCitra());
imgKonvolusi.bersihkan();
this.citraManip.setIcon(new TampilCitra(imgManipulasi.getCitra()).getImage());
//mengecek apakah imgManipulasi pernah disave atau tidak
//pengaruh pada title di scroll pane
if(!imgFileOut.getPath().equals(imgFile.getPath())) {
jScrollPane2.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory
.createEtchedBorder(), String.format("Manipulated* (%s)", imgFileOut.getPath()))); // affect there : qwewq
} else {
jScrollPane2.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory
.createEtchedBorder(), String.format("Manipulated* (%s)", imgFile.getPath())));
}
}//GEN-LAST:event_mnKonvlousiActionPerformed
private void mnExitActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnExitActionPerformed
// TODO add your handling code here:
this.dispose();
}//GEN-LAST:event_mnExitActionPerformed
private void mnGantiDefaultDirektoriActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnGantiDefaultDirektoriActionPerformed
// TODO add your handling code here:
DirektoriDefault dirDef = new DirektoriDefault();
}//GEN-LAST:event_mnGantiDefaultDirektoriActionPerformed
private void mnResetActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnResetActionPerformed
// TODO add your handling code here:
//mengecek apakah imgManipulasi pernah disave atau tidak
if(!imgFileOut.getPath().equals(imgFile.getPath())) {
this.imgManipulasi.setCitra(imgFileOut.getPath());
jScrollPane2.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory
.createEtchedBorder(), String.format("Original (%s)", imgFileOut.getPath()))); // affect there : qwewq
} else {
this.imgManipulasi.setCitra(imgAsli.getCitra());
jScrollPane2.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory
.createEtchedBorder(), String.format("Original (%s)", imgFile.getPath())));
}
this.citraManip.setIcon(new TampilCitra(imgManipulasi.getCitra()).getImage());
Citra.manipulated = false;
}//GEN-LAST:event_mnResetActionPerformed
private void mnCloseActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnCloseActionPerformed
// TODO add your handling code here:
this.imgManipulasi.bersihkan();
this.imgAsli.bersihkan();
this.citraAsal.setIcon(null);
jScrollPane1.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory
.createEtchedBorder(), "Original"));
this.citraManip.setIcon(null);
jScrollPane2.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory
.createEtchedBorder(), "Original"));
this.Edit.setEnabled(false);
this.mnSave.setEnabled(false);
this.mnClose.setEnabled(false);
this.mnHistogram.setEnabled(true);
}//GEN-LAST:event_mnCloseActionPerformed
private void mnGantiMatriksMaskActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnGantiMatriksMaskActionPerformed
// TODO add your handling code here:
new GantiKernel().setVisible(true);
}//GEN-LAST:event_mnGantiMatriksMaskActionPerformed
private void mnHistogramActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnHistogramActionPerformed
// TODO add your handling code here:
new Histogram(imgManipulasi.getCitra(), isGrayscaled()).setVisible(true);
}//GEN-LAST:event_mnHistogramActionPerformed
private boolean isGrayscaled() {
boolean thatIs = true;
Random random = new Random();
int[][] pikselRandom = new int[10][2];
for(byte i=0; i<10; i++) {
pikselRandom[i][0] = random.nextInt(imgManipulasi.getCitra().getHeight());
pikselRandom[i][1] = random.nextInt(imgManipulasi.getCitra().getWidth());
}
for(byte i =0; i<10; i++) {
Color c = new Color(imgManipulasi.getCitra().getRGB(pikselRandom[i][1],pikselRandom[i][0]));
if(c.getRed() != c.getBlue() || c.getRed() != c.getGreen() || c.getBlue() != c.getGreen()) {
thatIs = false;
break;
}
}
return thatIs;
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(Main.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(Main.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(Main.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(Main.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(() -> {
new Main().setVisible(true);
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JMenu Edit;
private javax.swing.JMenu File;
private javax.swing.JMenu Options;
private javax.swing.JLabel citraAsal;
private javax.swing.JLabel citraManip;
private javax.swing.JMenuBar jMenuBar1;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JScrollPane jScrollPane2;
private javax.swing.JMenuItem mnClose;
private javax.swing.JMenuItem mnExit;
private javax.swing.JMenuItem mnGantiDefaultDirektori;
private javax.swing.JMenuItem mnGantiMatriksMask;
private javax.swing.JMenuItem mnHistogram;
private javax.swing.JMenuItem mnKonvlousi;
private javax.swing.JMenuItem mnOpen;
private javax.swing.JMenuItem mnReset;
private javax.swing.JMenuItem mnSave;
private javax.swing.JMenuItem mnToGray;
// End of variables declaration//GEN-END:variables
private java.io.File imgFile;
private SaveFile imgFileOut;
private Citra imgAsli;
private Citra imgManipulasi;
}