File: ColorIndexer.java

package info (click to toggle)
java-imaging-utilities 0.14.2%2B3-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,280 kB
  • ctags: 3,725
  • sloc: java: 31,190; sh: 238; makefile: 53; xml: 30
file content (239 lines) | stat: -rw-r--r-- 5,754 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
/*
 * ColorIndexer
 *
 * Copyright (c) 2003 Marco Schmidt.
 * All rights reserved.
 */
package net.sourceforge.jiu.apps;

import java.io.File;
import java.text.DecimalFormat;
import java.text.NumberFormat;

import net.sourceforge.jiu.color.adjustment.Contrast;
import net.sourceforge.jiu.color.promotion.PromotionRGB24;
import net.sourceforge.jiu.data.PixelImage;
import net.sourceforge.jiu.data.RGB24Image;
import net.sourceforge.jiu.data.RGBIndex;
import net.sourceforge.jiu.geometry.Resample;
import net.sourceforge.jiu.gui.awt.ToolkitLoader;
import net.sourceforge.jiu.ops.BatchProcessorOperation;
import net.sourceforge.jiu.ops.OperationFailedException;

/**
 * Loads image files and generates color index information for them.
 * @author Marco Schmidt
 * @since 0.12.0
 */
public class ColorIndexer extends BatchProcessorOperation
{
	private int maxLength = 256;
	private int contrastChange = 100;
	private NumberFormat formatter = new DecimalFormat("#.##");

	public static final int BLACK = 0;
	public static final int RED = 4;
	public static final int GREEN = 2;
	public static final int BLUE = 1;
	public static final int YELLOW = 6;
	public static final int MAGENTA = 5;
	public static final int CYAN = 3;
	public static final int WHITE = 7;
	public static final String[] COLOR_NAMES =
		{"black", "blue", "green", "cyan", "red", "magenta", "yellow", "white"};

	public static void main(String[] args)
	{
		ColorIndexer indexer = new ColorIndexer();
		for (int i = 0; i < args.length; i++)
		{
			String name = args[i];
			File file = new File(name);
			if (file.isFile())
			{
				indexer.addInputFileName(name);
			}
			else
			if (file.isDirectory())
			{
				indexer.addDirectoryTree(name);
			}
		}
		indexer.process();
		System.out.println("Done.");
	}

	private PixelImage convertToRgb24(PixelImage in)
	{
		if (in == null)
		{
			return null;
		}
		if (in instanceof RGB24Image)
		{
			return in;
		}
		try
		{
			PromotionRGB24 pr = new PromotionRGB24();
			pr.setInputImage(in);
			pr.process();
			return pr.getOutputImage();
		}
		catch (OperationFailedException ofe)
		{
			return null;
		}
	}

	private PixelImage adjustColor(PixelImage img)
	{
		if (img == null || contrastChange == 0)
		{
			return img;
		}
		try
		{
			Contrast con = new Contrast();
			con.setInputImage(img);
			con.setContrast(contrastChange);
			con.process();
			return con.getOutputImage();
/*			HueSaturationValue hsv = new HueSaturationValue();
			hsv.setInputImage(img);
			hsv.setSaturationValue(30, 0);
			hsv.process();
			return hsv.getOutputImage();*/
		}
		catch (OperationFailedException ofe)
		{
			return null;
		}
	}

	private PixelImage scale(PixelImage in)
	{
		if (in == null)
		{
			return null;
		}
		if (in.getWidth() <= maxLength && in.getHeight() <= maxLength)
		{
			return in;
		}
		try
		{
			Resample res = new Resample();
			res.setFilter(Resample.FILTER_TYPE_LANCZOS3);
			res.setInputImage(in);
			float thumbRatio = 1.0f;
			float imageRatio = (float)in.getWidth() / (float)in.getHeight();
			int width = maxLength;
			int height = maxLength;
			if (thumbRatio < imageRatio)
			{
			  height = (int)(maxLength / imageRatio);
			}
			else
			{
			  width = (int)(maxLength * imageRatio);
			}
			//float x = (float)in.getWidth() / maxLength;
			//float y = (float)in.getHeight() / maxLength;
			res.setSize(width, height);
			res.process();
			return res.getOutputImage();
		}
		catch (OperationFailedException ofe)
		{
			return null;
		}
	}

	private int[] count(PixelImage image)
	{
		if (image == null)
		{
			return null;
		}
		RGB24Image in = (RGB24Image)image;
		int[] result = new int[8];
		for (int y = 0; y < image.getHeight(); y++)
		{
			for (int x = 0; x < image.getWidth(); x++)
			{
				int red = in.getSample(RGBIndex.INDEX_RED, x, y) >> 7;
				int green = in.getSample(RGBIndex.INDEX_GREEN, x, y) >> 7;
				int blue = in.getSample(RGBIndex.INDEX_BLUE, x, y) >> 7;
				int index = (red << 2) | (green << 1) | blue;
				result[index]++;
			}
		}
		return result;
	}

	/*private void save(PixelImage img, String fileName)
	{
		PNGCodec codec = new PNGCodec();
		try
		{
			codec.setImage(img);
			codec.setFile(fileName, CodecMode.SAVE);
			codec.process();
			codec.close();
		}
		catch (OperationFailedException ofe)
		{
		}
		catch (IOException ioe)
		{
		}
	}*/

	private void store(String name, int[] occ)
	{
		if (name == null || occ == null)
		{
			return;
		}
		int sum = 0;
		for (int i = 0; i < occ.length; i++)
		{
			sum += occ[i];
		}
		System.out.print(name);
		System.out.print(';');
		for (int i = 0; i < occ.length; i++)
		{
			float rel = (float)occ[i] / sum;
			if (rel < 0.01f)
			{
				continue;
			}
			System.out.print(COLOR_NAMES[i] + " = " + formatter.format(rel) + ";");
		}
		System.out.println();
	}

	public void processFile(String inputDirectory, String inputFileName, String outputDirectory)
	{
		File dir = new File(inputDirectory);
		File file = new File(dir, inputFileName);
		String name = file.getAbsolutePath();
		// load image
		PixelImage image = ToolkitLoader.loadViaToolkitOrCodecs(name);
		// convert to RGB24 if necessary
		image = convertToRgb24(image);
		// scale down if necessary
		image = scale(image);
		// increase contrast
		image = adjustColor(image);
		// save the modified image, for testing purposes
		/*File outFile = new File("f:\\", "th_" + inputFileName + ".png");
		save(image, outFile.getAbsolutePath());*/
		// determine occurrence of colors
		int[] occur = count(image);
		// store
		store(name, occur);
	}
}