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
|
/*
Copyright 2006 Jerry Huxtable
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.jhlabs.image;
import java.awt.*;
import java.awt.image.*;
import java.awt.geom.*;
public class VariableBlurFilter extends AbstractBufferedImageOp {
private int hRadius = 1;
private int vRadius = 1;
private int iterations = 1;
private BufferedImage blurMask;
public BufferedImage filter( BufferedImage src, BufferedImage dst ) {
int width = src.getWidth();
int height = src.getHeight();
if ( dst == null )
dst = new BufferedImage( width, height, BufferedImage.TYPE_INT_ARGB );
int[] inPixels = new int[width*height];
int[] outPixels = new int[width*height];
getRGB( src, 0, 0, width, height, inPixels );
for (int i = 0; i < iterations; i++ ) {
blur( inPixels, outPixels, width, height, hRadius, 1 );
blur( outPixels, inPixels, height, width, vRadius, 2 );
}
setRGB( dst, 0, 0, width, height, inPixels );
return dst;
}
public BufferedImage createCompatibleDestImage(BufferedImage src, ColorModel dstCM) {
if ( dstCM == null )
dstCM = src.getColorModel();
return new BufferedImage(dstCM, dstCM.createCompatibleWritableRaster(src.getWidth(), src.getHeight()), dstCM.isAlphaPremultiplied(), null);
}
public Rectangle2D getBounds2D( BufferedImage src ) {
return new Rectangle(0, 0, src.getWidth(), src.getHeight());
}
public Point2D getPoint2D( Point2D srcPt, Point2D dstPt ) {
if ( dstPt == null )
dstPt = new Point2D.Double();
dstPt.setLocation( srcPt.getX(), srcPt.getY() );
return dstPt;
}
public RenderingHints getRenderingHints() {
return null;
}
public void blur( int[] in, int[] out, int width, int height, int radius, int pass ) {
int widthMinus1 = width-1;
int[] r = new int[width];
int[] g = new int[width];
int[] b = new int[width];
int[] a = new int[width];
int[] mask = new int[width];
int inIndex = 0;
for ( int y = 0; y < height; y++ ) {
int outIndex = y;
if ( blurMask != null ) {
if ( pass == 1 )
getRGB( blurMask, 0, y, width, 1, mask );
else
getRGB( blurMask, y, 0, 1, width, mask );
}
for ( int x = 0; x < width; x++ ) {
int argb = in[inIndex+x];
a[x] = (argb >> 24) & 0xff;
r[x] = (argb >> 16) & 0xff;
g[x] = (argb >> 8) & 0xff;
b[x] = argb & 0xff;
if ( x != 0 ) {
a[x] += a[x-1];
r[x] += r[x-1];
g[x] += g[x-1];
b[x] += b[x-1];
}
}
for ( int x = 0; x < width; x++ ) {
// Get the blur radius at x, y
int ra;
if ( blurMask != null ) {
if ( pass == 1 )
ra = (int)((mask[x] & 0xff)*hRadius/255f);
else
ra = (int)((mask[x] & 0xff)*vRadius/255f);
} else {
if ( pass == 1 )
ra = (int)(blurRadiusAt( x, y, width, height ) * hRadius);
else
ra = (int)(blurRadiusAt( y, x, height, width ) * vRadius);
}
int divisor = 2*ra+1;
int ta = 0, tr = 0, tg = 0, tb = 0;
int i1 = x+ra;
if ( i1 > widthMinus1 ) {
int f = i1-widthMinus1;
int l = widthMinus1;
ta += (a[l]-a[l-1]) * f;
tr += (r[l]-r[l-1]) * f;
tg += (g[l]-g[l-1]) * f;
tb += (b[l]-b[l-1]) * f;
i1 = widthMinus1;
}
int i2 = x-ra-1;
if ( i2 < 0 ) {
ta -= a[0] * i2;
tr -= r[0] * i2;
tg -= g[0] * i2;
tb -= b[0] * i2;
i2 = 0;
}
ta += a[i1] - a[i2];
tr += r[i1] - r[i2];
tg += g[i1] - g[i2];
tb += b[i1] - b[i2];
//if ( y == 0 && pass == 1 )System.out.println(x+": "+i1+" "+i2+" "+r[i1]+" "+r[i2]+" "+tr);
out[ outIndex ] = ((ta/divisor) << 24) | ((tr/divisor) << 16) | ((tg/divisor) << 8) | (tb/divisor);
outIndex += height;
}
inIndex += width;
}
}
// Override this to get a different blur radius
protected float blurRadiusAt( int x, int y, int width, int height ) {
return (float)x/width;
}
public void setHRadius(int hRadius) {
this.hRadius = hRadius;
}
public int getHRadius() {
return hRadius;
}
public void setVRadius(int vRadius) {
this.vRadius = vRadius;
}
public int getVRadius() {
return vRadius;
}
public void setRadius(int radius) {
this.hRadius = this.vRadius = radius;
}
public int getRadius() {
return hRadius;
}
public void setIterations(int iterations) {
this.iterations = iterations;
}
public int getIterations() {
return iterations;
}
public void setBlurMask(BufferedImage blurMask) {
this.blurMask = blurMask;
}
public BufferedImage getBlurMask() {
return blurMask;
}
public String toString() {
return "Blur/Variable Blur...";
}
}
|