annotate common-jai/src/main/java/digilib/image/JAIDocuImage.java @ 1110:ffda96c2fde0

use RegExp for finding regions; use ID for highlighting
author hertzhaft
date Sun, 28 Oct 2012 15:10:41 +0100
parents b2d97b842612
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
960
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
1 /* JAIDocuImage -- Image class implementation using JAI (Java Advanced Imaging)
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
2
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
3 Digital Image Library servlet components
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
4
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
5 Copyright (C) 2001, 2002, 2003 Robert Casties (robcast@mail.berlios.de)
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
6
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
7 This program is free software; you can redistribute it and/or modify it
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
9 Free Software Foundation; either version 2 of the License, or (at your
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
10 option) any later version.
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
11
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
12 Please read license.txt for the full details. A copy of the GPL
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
13 may be found at http://www.gnu.org/copyleft/lgpl.html
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
14
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
15 You should have received a copy of the GNU General Public License
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
16 along with this program; if not, write to the Free Software
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
18
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
19 */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
20
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
21 package digilib.image;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
22
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
23 import java.awt.Rectangle;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
24 import java.awt.RenderingHints;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
25 import java.awt.image.RenderedImage;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
26 import java.awt.image.renderable.ParameterBlock;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
27 import java.io.IOException;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
28 import java.io.OutputStream;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
29 import java.util.ArrayList;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
30 import java.util.Enumeration;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
31 import java.util.Iterator;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
32 import java.util.List;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
33
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
34 import javax.media.jai.BorderExtender;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
35 import javax.media.jai.Interpolation;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
36 import javax.media.jai.JAI;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
37 import javax.media.jai.KernelJAI;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
38 import javax.media.jai.ParameterBlockJAI;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
39 import javax.media.jai.RenderedOp;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
40 import javax.media.jai.operator.TransposeDescriptor;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
41 import javax.media.jai.operator.TransposeType;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
42
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
43 import com.sun.media.jai.codec.ImageCodec;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
44
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
45 import digilib.io.FileOpException;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
46 import digilib.io.FileOps;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
47 import digilib.io.ImageInput;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
48 import digilib.util.ImageSize;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
49
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
50 /** A DocuImage implementation using Java Advanced Imaging Library. */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
51 /**
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
52 * @author casties
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
53 *
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
54 */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
55 public class JAIDocuImage extends ImageInfoDocuImage {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
56
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
57 protected RenderedImage img;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
58
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
59 protected Interpolation interpol = null;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
60
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
61 /*
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
62 * static { // we could set our own tile cache size here TileCache tc =
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
63 * JAI.createTileCache(100*1024*1024);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
64 * JAI.getDefaultInstance().setTileCache(tc); }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
65 */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
66
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
67 public boolean isSubimageSupported() {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
68 return true;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
69 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
70
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
71 /*
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
72 * Real setQuality implementation. Creates the correct Interpolation.
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
73 */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
74 public void setQuality(int qual) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
75 quality = qual;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
76 // setup interpolation quality
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
77 if (qual > 1) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
78 logger.debug("quality q2");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
79 interpol = Interpolation.getInstance(Interpolation.INTERP_BICUBIC);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
80 } else if (qual == 1) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
81 logger.debug("quality q1");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
82 interpol = Interpolation.getInstance(Interpolation.INTERP_BILINEAR);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
83 } else {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
84 logger.debug("quality q0");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
85 interpol = Interpolation.getInstance(Interpolation.INTERP_NEAREST);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
86 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
87 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
88
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
89 /* returns a list of supported image formats */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
90 @SuppressWarnings("unchecked") // ImageCodec.getCodecs() returns a naked Enumeration
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
91 public Iterator<String> getSupportedFormats() {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
92 Enumeration<ImageCodec> codecs = ImageCodec.getCodecs();
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
93 List<String> formats = new ArrayList<String>();
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
94 for (ImageCodec codec = codecs.nextElement(); codecs.hasMoreElements(); codec = codecs
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
95 .nextElement()) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
96 logger.debug("known format:"+codec.getFormatName());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
97 formats.add(codec.getFormatName());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
98 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
99 logger.debug("tilecachesize:"
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
100 + JAI.getDefaultInstance().getTileCache().getMemoryCapacity());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
101 return formats.iterator();
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
102 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
103
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
104 /* Check image size and type and store in ImageFile f */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
105 public ImageInput identify(ImageInput input) throws IOException {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
106 this.input = input;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
107 // try parent method first
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
108 ImageInput imf = super.identify(input);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
109 if (imf != null) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
110 return imf;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
111 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
112 /*
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
113 * try JAI
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
114 */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
115 logger.debug("identifying (JAI) " + input);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
116 try {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
117 RenderedOp img = null;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
118 if (input.hasFile()) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
119 String t = FileOps.mimeForFile(input.getFile());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
120 input.setMimetype(t);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
121 img = JAI.create("fileload", input.getFile().getAbsolutePath());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
122 } else if (input.hasInputStream()) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
123 img = JAI.create("stream", input.getInputStream());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
124 // FIXME: where do we get the mimetype?
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
125 } else {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
126 throw new FileOpException("unable to get data for image!");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
127 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
128 ImageSize d = new ImageSize(img.getWidth(), img.getHeight());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
129 input.setSize(d);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
130 logger.debug("image size: " + d);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
131 return input;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
132 } catch (Exception e) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
133 throw new FileOpException("ERROR: unable to identify image!");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
134 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
135 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
136
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
137 /* Load an image file into the Object. */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
138 public void loadImage(ImageInput ii) throws FileOpException {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
139 this.input = ii;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
140 if (ii.hasFile()) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
141 img = JAI.create("fileload", ii.getFile().getAbsolutePath());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
142 } else if (ii.hasInputStream()) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
143 img = JAI.create("stream", ii.getInputStream());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
144 } else {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
145 throw new FileOpException("unable to get data for image!");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
146 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
147 if (img == null) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
148 throw new FileOpException("Unable to load File!");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
149 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
150 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
151
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
152 /* Load an image file into the Object. */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
153 public void loadSubimage(ImageInput ii, Rectangle region, int subsample) throws FileOpException {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
154 logger.debug("loadSubimage");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
155 this.input = ii;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
156 if (ii.hasFile()) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
157 img = JAI.create("fileload", ii.getFile().getAbsolutePath());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
158 } else if (ii.hasInputStream()) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
159 img = JAI.create("stream", ii.getInputStream());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
160 } else {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
161 throw new FileOpException("unable to get data for image!");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
162 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
163 if ((region.width < img.getWidth())
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
164 || (region.height < img.getHeight())) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
165 // setup Crop
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
166 ParameterBlock cp = new ParameterBlock();
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
167 cp.addSource(img);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
168 cp.add((float) region.x);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
169 cp.add((float) region.y);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
170 cp.add((float) region.width);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
171 cp.add((float) region.height);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
172 logger.debug("loadSubimage: crop");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
173 img = JAI.create("crop", cp);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
174 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
175 if (subsample > 1) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
176 float sc = 1f / subsample;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
177 ParameterBlockJAI sp = new ParameterBlockJAI("scale");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
178 sp.addSource(img);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
179 sp.setParameter("xScale", sc);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
180 sp.setParameter("yScale", sc);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
181 sp.setParameter("interpolation", Interpolation
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
182 .getInstance(Interpolation.INTERP_NEAREST));
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
183 // scale
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
184 logger.debug("loadSubimage: scale");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
185 img = JAI.create("scale", sp);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
186 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
187 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
188
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
189 /* Write the current image to an OutputStream. */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
190 public void writeImage(String mt, OutputStream ostream) throws ImageOpException, FileOpException {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
191 try {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
192 // setup output
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
193 ParameterBlock pb3 = new ParameterBlock();
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
194 pb3.addSource(img);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
195 pb3.add(ostream);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
196 if (mt == "image/jpeg") {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
197 pb3.add("JPEG");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
198 } else if (mt == "image/png") {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
199 pb3.add("PNG");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
200 } else {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
201 // unknown mime type
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
202 throw new ImageOpException("Unknown mime type: " + mt);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
203 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
204 // render output
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
205 JAI.create("encode", pb3);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
206
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
207 } catch (RuntimeException e) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
208 // JAI likes to throw RuntimeExceptions
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
209 throw new FileOpException("Error writing image: "+e);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
210 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
211 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
212
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
213 /* returns the current image size
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
214 * @see digilib.image.DocuImageImpl#getSize()
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
215 */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
216 public ImageSize getSize() {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
217 ImageSize is = null;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
218 // TODO: do we want to cache imgSize?
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
219 int h = 0;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
220 int w = 0;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
221 if (img != null) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
222 // get size from image
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
223 h = img.getHeight();
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
224 w = img.getWidth();
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
225 is = new ImageSize(w, h);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
226 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
227 return is;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
228 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
229
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
230 /* scales the current image */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
231 public void scale(double scale, double scaleY) throws ImageOpException {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
232 logger.debug("scale");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
233 if ((scale < 1) && (img.getColorModel().getPixelSize() == 1)
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
234 && (quality > 0)) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
235 /*
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
236 * "SubsampleBinaryToGray" for downscaling BW
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
237 */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
238 scaleBinary((float) scale);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
239 } else if ((scale <= 0.5) && (quality > 1)) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
240 /*
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
241 * blur and "Scale" for downscaling color images
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
242 */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
243 if ((scale <= 0.5) && (quality > 1)) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
244 int bl = (int) Math.floor(1 / scale);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
245 // don't blur more than 3
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
246 blur(Math.min(bl, 3));
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
247 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
248 scaleAll((float) scale);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
249 } else {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
250 /*
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
251 * "Scale" for the rest
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
252 */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
253 scaleAll((float) scale);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
254 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
255
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
256 // DEBUG
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
257 logger.debug("SCALE: " + scale + " ->" + img.getWidth() + "x"
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
258 + img.getHeight());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
259
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
260 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
261
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
262 public void scaleAll(float scale) throws ImageOpException {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
263 RenderedImage scaledImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
264 // DEBUG
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
265 logger.debug("scaleAll: " + scale);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
266 ParameterBlockJAI param = new ParameterBlockJAI("Scale");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
267 param.addSource(img);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
268 param.setParameter("xScale", scale);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
269 param.setParameter("yScale", scale);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
270 param.setParameter("interpolation", interpol);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
271 // hint with border extender
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
272 RenderingHints hint = new RenderingHints(JAI.KEY_BORDER_EXTENDER,
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
273 BorderExtender.createInstance(BorderExtender.BORDER_COPY));
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
274 // scale
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
275 scaledImg = JAI.create("Scale", param, hint);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
276
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
277 if (scaledImg == null) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
278 throw new ImageOpException("Unable to scale");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
279 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
280 img = scaledImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
281 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
282
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
283 public void blur(int radius) throws ImageOpException {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
284 RenderedImage blurredImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
285 int klen = Math.max(radius, 2);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
286 logger.debug("blur: " + klen);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
287 int ksize = klen * klen;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
288 float f = 1f / ksize;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
289 float[] kern = new float[ksize];
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
290 for (int i = 0; i < ksize; i++) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
291 kern[i] = f;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
292 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
293 KernelJAI blur = new KernelJAI(klen, klen, kern);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
294 ParameterBlockJAI param = new ParameterBlockJAI("Convolve");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
295 param.addSource(img);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
296 param.setParameter("kernel", blur);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
297 // hint with border extender
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
298 RenderingHints hint = new RenderingHints(JAI.KEY_BORDER_EXTENDER,
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
299 BorderExtender.createInstance(BorderExtender.BORDER_COPY));
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
300 blurredImg = JAI.create("Convolve", param, hint);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
301 if (blurredImg == null) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
302 throw new ImageOpException("Unable to scale");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
303 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
304 img = blurredImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
305 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
306
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
307 public void scaleBinary(float scale) throws ImageOpException {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
308 RenderedImage scaledImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
309 // DEBUG
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
310 logger.debug("scaleBinary: " + scale);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
311 ParameterBlockJAI param = new ParameterBlockJAI("SubsampleBinaryToGray");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
312 param.addSource(img);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
313 param.setParameter("xScale", scale);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
314 param.setParameter("yScale", scale);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
315 // hint with border extender
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
316 RenderingHints hint = new RenderingHints(JAI.KEY_BORDER_EXTENDER,
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
317 BorderExtender.createInstance(BorderExtender.BORDER_COPY));
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
318 // scale
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
319 scaledImg = JAI.create("SubsampleBinaryToGray", param, hint);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
320 if (scaledImg == null) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
321 throw new ImageOpException("Unable to scale");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
322 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
323 img = scaledImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
324 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
325
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
326 /* crops the current image */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
327 public void crop(int x_off, int y_off, int width, int height)
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
328 throws ImageOpException {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
329 // setup Crop
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
330 ParameterBlock param = new ParameterBlock();
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
331 param.addSource(img);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
332 param.add((float) x_off);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
333 param.add((float) y_off);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
334 param.add((float) width);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
335 param.add((float) height);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
336 RenderedImage croppedImg = JAI.create("crop", param);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
337
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
338 logger.debug("CROP: " + x_off + "," + y_off + ", " + width + ","
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
339 + height + " ->" + croppedImg.getWidth() + "x"
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
340 + croppedImg.getHeight());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
341 img = croppedImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
342 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
343
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
344 /* rotates the current image */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
345 public void rotate(double angle) throws ImageOpException {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
346 RenderedImage rotImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
347 // convert degrees to radians
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
348 double rangle = Math.toRadians(angle);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
349 double x = img.getWidth() / 2;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
350 double y = img.getHeight() / 2;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
351
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
352 // optimize rotation by right angles
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
353 TransposeType rotOp = null;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
354 if (Math.abs(angle - 0) < epsilon) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
355 // 0 degree
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
356 return;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
357 } else if (Math.abs(angle - 90) < epsilon) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
358 // 90 degree
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
359 rotOp = TransposeDescriptor.ROTATE_90;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
360 } else if (Math.abs(angle - 180) < epsilon) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
361 // 180 degree
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
362 rotOp = TransposeDescriptor.ROTATE_180;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
363 } else if (Math.abs(angle - 270) < epsilon) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
364 // 270 degree
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
365 rotOp = TransposeDescriptor.ROTATE_270;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
366 } else if (Math.abs(angle - 360) < epsilon) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
367 // 360 degree
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
368 return;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
369 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
370 if (rotOp != null) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
371 // use Transpose operation
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
372 ParameterBlock pb = new ParameterBlock();
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
373 pb.addSource(img);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
374 pb.add(rotOp);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
375 rotImg = JAI.create("transpose", pb);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
376 } else {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
377 // setup "normal" rotation
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
378 ParameterBlock param = new ParameterBlock();
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
379 param.addSource(img);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
380 param.add((float) x);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
381 param.add((float) y);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
382 param.add((float) rangle);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
383 param.add(interpol);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
384
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
385 rotImg = JAI.create("rotate", param);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
386 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
387
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
388 logger.debug("ROTATE: " + x + "," + y + ", " + angle + " (" + rangle
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
389 + ")" + " ->" + rotImg.getWidth() + "x" + rotImg.getHeight());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
390 img = rotImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
391 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
392
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
393 /*
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
394 * mirrors the current image works only horizontal and vertical
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
395 */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
396 public void mirror(double angle) throws ImageOpException {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
397 RenderedImage mirImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
398 // only mirroring by right angles
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
399 TransposeType rotOp = null;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
400 if (Math.abs(angle) < epsilon) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
401 // 0 degree
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
402 rotOp = TransposeDescriptor.FLIP_HORIZONTAL;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
403 } else if (Math.abs(angle - 90) < epsilon) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
404 // 90 degree
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
405 rotOp = TransposeDescriptor.FLIP_VERTICAL;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
406 } else if (Math.abs(angle - 180) < epsilon) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
407 // 180 degree
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
408 rotOp = TransposeDescriptor.FLIP_HORIZONTAL;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
409 } else if (Math.abs(angle - 270) < epsilon) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
410 // 270 degree
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
411 rotOp = TransposeDescriptor.FLIP_VERTICAL;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
412 } else if (Math.abs(angle - 360) < epsilon) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
413 // 360 degree
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
414 rotOp = TransposeDescriptor.FLIP_HORIZONTAL;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
415 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
416 // use Transpose operation
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
417 ParameterBlock param = new ParameterBlock();
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
418 param.addSource(img);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
419 param.add(rotOp);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
420 mirImg = JAI.create("transpose", param);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
421
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
422 if (mirImg == null) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
423 throw new ImageOpException("Unable to flip");
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
424 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
425 img = mirImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
426 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
427
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
428 /* contrast and brightness enhancement */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
429 public void enhance(float mult, float add) throws ImageOpException {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
430 RenderedImage enhImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
431 double[] ma = { mult };
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
432 double[] aa = { add };
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
433 // use Rescale operation
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
434 ParameterBlock param = new ParameterBlock();
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
435 param.addSource(img);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
436 param.add(ma);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
437 param.add(aa);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
438 enhImg = JAI.create("rescale", param);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
439
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
440 logger.debug("ENHANCE: *" + mult + ", +" + add + " ->"
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
441 + enhImg.getWidth() + "x" + enhImg.getHeight());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
442 // DEBUG
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
443 img = enhImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
444 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
445
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
446 /*
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
447 * (non-Javadoc)
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
448 *
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
449 * @see digilib.image.DocuImage#enhanceRGB(float[], float[])
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
450 */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
451 public void enhanceRGB(float[] rgbm, float[] rgba) throws ImageOpException {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
452 RenderedImage enhImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
453 int nb = rgbm.length;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
454 double[] ma = new double[nb];
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
455 double[] aa = new double[nb];
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
456 for (int i = 0; i < nb; i++) {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
457 ma[i] = rgbm[i];
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
458 aa[i] = rgba[i];
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
459 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
460 // use Rescale operation
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
461 ParameterBlock param = new ParameterBlock();
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
462 param.addSource(img);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
463 param.add(ma);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
464 param.add(aa);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
465 enhImg = JAI.create("rescale", param);
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
466
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
467 logger.debug("ENHANCE_RGB: *" + rgbm + ", +" + rgba + " ->"
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
468 + enhImg.getWidth() + "x" + enhImg.getHeight());
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
469 img = enhImg;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
470 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
471
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
472 /*
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
473 * (non-Javadoc)
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
474 *
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
475 * @see digilib.image.DocuImage#dispose()
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
476 */
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
477 public void dispose() {
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
478 img = null;
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
479 }
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
480
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
diff changeset
481 }