File: MedianCutDialog.java

package info (click to toggle)
java-imaging-utilities 0.14.2%2B3-4
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 2,304 kB
  • ctags: 3,737
  • sloc: java: 31,190; sh: 238; xml: 30; makefile: 19
file content (322 lines) | stat: -rw-r--r-- 8,515 bytes parent folder | download | duplicates (2)
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
/*
 * MedianCutDialog
 * 
 * Copyright (c) 2001, 2002, 2003 Marco Schmidt.
 * All rights reserved.
 */

package net.sourceforge.jiu.gui.awt.dialogs;

import java.awt.BorderLayout;
import java.awt.Button;
import java.awt.Choice;
import java.awt.Dialog;
import java.awt.Dimension;
import java.awt.Frame;
import java.awt.GridLayout;
import java.awt.Label;
import java.awt.Panel;
import java.awt.Rectangle;
import java.awt.TextField;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import net.sourceforge.jiu.apps.Strings;
import net.sourceforge.jiu.color.dithering.ErrorDiffusionDithering;
import net.sourceforge.jiu.color.quantization.MedianCutQuantizer;

/**
 * A dialog to enter the parameters for a Median Cut color quantization operation.
 * It also allows to enter the optional algorithms that can be applied in combination with Median Cut.
 * @author Marco Schmidt
 */
public class MedianCutDialog extends Dialog implements 
	ActionListener, ItemListener, KeyListener
{
	public final int[][] METHODS =
	{
		{
		 MedianCutQuantizer.METHOD_REPR_COLOR_WEIGHTED_AVERAGE,
		 MedianCutQuantizer.METHOD_REPR_COLOR_AVERAGE,
		 MedianCutQuantizer.METHOD_REPR_COLOR_MEDIAN
		},
		{
		 Strings.METHOD_REPR_COLOR_WEIGHTED_AVERAGE,
		 Strings.METHOD_REPR_COLOR_AVERAGE,
		 Strings.METHOD_REPR_COLOR_MEDIAN
		}
	};
	public final int[] ERROR_DIFFUSION_STRINGS =
	{
		Strings.FLOYD_STEINBERG_ERROR_DIFFUSION,
		Strings.STUCKI_ERROR_DIFFUSION,
	 	Strings.BURKES_ERROR_DIFFUSION,
		Strings.SIERRA_ERROR_DIFFUSION,
		Strings.JARVIS_JUDICE_NINKE_ERROR_DIFFUSION,
		Strings.STEVENSON_ARCE_ERROR_DIFFUSION
	};
	public final int[] ERROR_DIFFUSION_TYPES =
	{
		ErrorDiffusionDithering.TYPE_FLOYD_STEINBERG,
		ErrorDiffusionDithering.TYPE_STUCKI,
	 	ErrorDiffusionDithering.TYPE_BURKES,
		ErrorDiffusionDithering.TYPE_SIERRA,
		ErrorDiffusionDithering.TYPE_JARVIS_JUDICE_NINKE,
		ErrorDiffusionDithering.TYPE_STEVENSON_ARCE
	};
	private Button ok;
	private Button cancel;
	private TextField numColorsField;
	private Choice outputColorType;
	private Choice reprColorMethod;
	private Choice algorithms;
	private Choice errorDiffusion;
	private TextField numPassesField;
	private TextField tauField;
	private boolean pressedOk;

	/**
	 * Creates a modal dialog to enter the parameter.
	 * @param owner the parent of this modal dialog
	 * @param strings an object to get String constants in the current language
	 * @param numColors the number of colors in the resulting image
	 * @param representativeColorMethod the method to determine the representative color from a set of colors
	 * @param paletted if true, the output image will be paletted, otherwise truecolor
	 * @param numPasses number of contour removal iterations
	 * @param initialTau maximum distance for two colors to be considered similar in contour removal
	 */
	public MedianCutDialog(Frame owner, Strings strings, int numColors, int representativeColorMethod, boolean paletted, int numPasses, double initialTau)
	{
		super(owner, strings.get(Strings.MEDIAN_CUT_COLOR_QUANTIZATION), true);
		pressedOk = false;

		Panel panel = new Panel();
		panel.setLayout(new GridLayout(0, 2));

		panel.add(new Label(strings.get(Strings.NUM_COLORS)));
		numColorsField = new TextField(Integer.toString(numColors), 6);
		numColorsField.addKeyListener(this);
		panel.add(numColorsField);

		panel.add(new Label(strings.get(Strings.OUTPUT_COLOR_TYPE)));
		outputColorType = new Choice();
		outputColorType.add(strings.get(Strings.OUTPUT_COLOR_TYPE_PALETTED));
		outputColorType.add(strings.get(Strings.OUTPUT_COLOR_TYPE_RGB));
		outputColorType.select(paletted ? 0 : 1);
		panel.add(outputColorType);

		panel.add(new Label(strings.get(Strings.METHOD_REPR_COLOR)));
		reprColorMethod = new Choice();
		for (int i = 0; i < METHODS[0].length; i++)
		{
			reprColorMethod.add(strings.get(METHODS[1][i]));
			if (representativeColorMethod == METHODS[0][i])
			{
				reprColorMethod.select(i);
			}
		}
		panel.add(reprColorMethod);

		panel.add(new Label(strings.get(Strings.OUTPUT_QUALITY_IMPROVEMENT_ALGORITHM)));
		algorithms = new Choice();
		algorithms.add(strings.get(Strings.ALGORITHMS_NONE));
		algorithms.add(strings.get(Strings.ERROR_DIFFUSION));
		algorithms.add(strings.get(Strings.CONTOUR_REMOVAL));
		algorithms.select(1);
		algorithms.addItemListener(this);
		panel.add(algorithms);

		panel.add(new Label(strings.get(Strings.ERROR_DIFFUSION)));
		errorDiffusion = new Choice();
		for (int i = 0; i < ERROR_DIFFUSION_STRINGS.length; i++)
		{
			errorDiffusion.add(strings.get(ERROR_DIFFUSION_STRINGS[i]));
		}
		errorDiffusion.select(0);
		panel.add(errorDiffusion);

		panel.add(new Label(strings.get(Strings.CONTOUR_REMOVAL_NUM_PASSES)));
		numPassesField = new TextField(Integer.toString(numPasses));
		numPassesField.addKeyListener(this);
		panel.add(numPassesField);

		panel.add(new Label(strings.get(Strings.CONTOUR_REMOVAL_TAU)));
		tauField = new TextField(Double.toString(initialTau));
		tauField.addKeyListener(this);
		panel.add(tauField);

		add(panel, BorderLayout.CENTER);

		ok = new Button(strings.get(Strings.OK));
		ok.addActionListener(this);
		cancel = new Button(strings.get(Strings.CANCEL));
		cancel.addActionListener(this);

		updateStates();

		panel = new Panel();
		panel.add(ok);
		panel.add(cancel);
		add(panel, BorderLayout.SOUTH);

		pack();
		center();
	}

	/**
	 * Hides (closes) this dialog if the OK button was source of the action event
	 * (e.g. if the button was pressed).
	 */
	public void actionPerformed(ActionEvent e)
	{
		if (e.getSource() == ok)
		{
			pressedOk = true;
			setVisible(false);
		}
		else
		if (e.getSource() == cancel)
		{
			setVisible(false);
		}
	}

	/**
	 * Centers the dialog on screen.
	 */
	public void center()
	{
		Rectangle rect = getBounds();
		int width = rect.width;
		int height = rect.height;
		Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
		setLocation((screenSize.width / 2) - (width / 2),
			(screenSize.height / 2) - (height / 2));
	}

	public int getErrorDiffusion()
	{
		if (algorithms.getSelectedIndex() == 1)
		{
			return ERROR_DIFFUSION_TYPES[errorDiffusion.getSelectedIndex()];
		}
		else
		{
			return -1;
		}
	}

	private double getDoubleValue(TextField textField)
	{
		try
		{
			Double d = new Double(textField.getText());
			return d.doubleValue();
		}
		catch (NumberFormatException nfe)
		{
			return Double.NaN;
		}
	}	


	private int getIntValue(TextField textField)
	{
		try
		{
			return Integer.parseInt(textField.getText());
		}
		catch (NumberFormatException nfe)
		{
			return -1;
		}
	}	

	public int getNumColors()
	{
		return getIntValue(numColorsField);
	}

	public int getNumPasses()
	{
		return getIntValue(numPassesField);
	}

	public int getReprColorMethod()
	{
		return METHODS[0][reprColorMethod.getSelectedIndex()];
	}

	public double getTau()
	{
		return getDoubleValue(tauField);
	}

	public boolean hasPressedOk()
	{
		return pressedOk;
	}

	public boolean isOutputTypePaletted()
	{
		return outputColorType.getSelectedIndex() == 0;
	}

	public void itemStateChanged(ItemEvent event)
	{
		if (event.getSource() == algorithms)
		{
			updateStates();
		}
	}

	public void keyPressed(KeyEvent e)
	{
		updateOkButton();
	}

	public void keyReleased(KeyEvent e)
	{
		updateOkButton();
	}

	public void keyTyped(KeyEvent e)
	{
		updateOkButton();
	}

	private void updateOkButton()
	{
		int nc = getNumColors();
		boolean enabled = nc >= 1 && nc <= 256;
		if (enabled && algorithms.getSelectedIndex() == 2)
		{
			enabled = getTau() >= 0.0 && getNumPasses() >= 1;
		}
		ok.setEnabled(enabled);
	}

	private void updateStates()
	{
		int algorithmSelection = algorithms.getSelectedIndex();
		boolean ed = algorithmSelection == 1;
		errorDiffusion.setEnabled(ed);
		ed = algorithmSelection == 2;
		tauField.setEnabled(ed);
		numPassesField.setEnabled(ed);
	}

	public boolean useContourRemoval()
	{
		return algorithms.getSelectedIndex() == 2;
	}

	public boolean useErrorDiffusion()
	{
		return algorithms.getSelectedIndex() == 1;
	}
}