/*

   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You 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 org.apache.batik.ext.awt.image.renderable;

import java.awt.Point;
import java.awt.RenderingHints;
import java.awt.Shape;
import java.awt.geom.AffineTransform;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
import java.awt.image.ColorModel;
import java.awt.image.Raster;
import java.awt.image.RenderedImage;
import java.awt.image.WritableRaster;
import java.awt.image.renderable.RenderContext;

import org.apache.batik.ext.awt.image.PadMode;
import org.apache.batik.ext.awt.image.rendered.AffineRed;
import org.apache.batik.ext.awt.image.rendered.BufferedImageCachableRed;
import org.apache.batik.ext.awt.image.rendered.CachableRed;
import org.apache.batik.ext.awt.image.rendered.MorphologyOp;
import org.apache.batik.ext.awt.image.rendered.PadRed;
import org.apache.batik.ext.awt.image.rendered.RenderedImageCachableRed;

Implements a Morphology operation, where the kernel size is defined by radius along the x and y axis.
Author:Vincent Hardy
Version:$Id: MorphologyRable8Bit.java 1733416 2016-03-03 07:07:13Z gadams $
/** * Implements a Morphology operation, where the kernel size is * defined by radius along the x and y axis. * * @author <a href="mailto:vincent.hardy@eng.sun.com">Vincent Hardy</a> * @version $Id: MorphologyRable8Bit.java 1733416 2016-03-03 07:07:13Z gadams $ */
public class MorphologyRable8Bit extends AbstractRable implements MorphologyRable {
Morphology radius
/** * Morphology radius */
private double radiusX, radiusY;
Controls whether this filter does dilation (as opposed to erosion)
/** * Controls whether this filter does dilation * (as opposed to erosion) */
private boolean doDilation; public MorphologyRable8Bit(Filter src, double radiusX, double radiusY, boolean doDilation){ super(src, null); setRadiusX(radiusX); setRadiusY(radiusY); setDoDilation(doDilation); }
Returns the source to be offset.
/** * Returns the source to be offset. */
public Filter getSource(){ return (Filter)getSources().get(0); }
Sets the source to be offset.
Params:
  • src – image to offset.
/** * Sets the source to be offset. * @param src image to offset. */
public void setSource(Filter src){ init(src, null); }
Pass-through: returns the source's bounds
/** * Pass-through: returns the source's bounds */
public Rectangle2D getBounds2D(){ return getSource().getBounds2D(); }
The radius along the x axis, in user space.
Params:
  • radiusX – should be greater than zero.
/** * The radius along the x axis, in user space. * @param radiusX should be greater than zero. */
public void setRadiusX(double radiusX){ if(radiusX <= 0){ throw new IllegalArgumentException(); } touch(); this.radiusX = radiusX; }
The radius along the y axis, in user space.
Params:
  • radiusY – should be greater than zero.
/** * The radius along the y axis, in user space. * @param radiusY should be greater than zero. */
public void setRadiusY(double radiusY){ if(radiusY <= 0){ throw new IllegalArgumentException(); } touch(); this.radiusY = radiusY; }
The switch that determines if the operation is to "dilate" or "erode".
Params:
  • doDilation – do "dilation" when true and "erosion" when false
/** * The switch that determines if the operation * is to "dilate" or "erode". * @param doDilation do "dilation" when true and "erosion" when false */
public void setDoDilation(boolean doDilation){ touch(); this.doDilation = doDilation; }
Returns whether the operation is "dilation" or not("erosion")
/** * Returns whether the operation is "dilation" or not("erosion") */
public boolean getDoDilation(){ return doDilation; }
Returns the radius along the x-axis, in user space.
/** * Returns the radius along the x-axis, in user space. */
public double getRadiusX(){ return radiusX; }
Returns the radius along the y-axis, in user space.
/** * Returns the radius along the y-axis, in user space. */
public double getRadiusY(){ return radiusY; } public RenderedImage createRendering(RenderContext rc) { // Just copy over the rendering hints. RenderingHints rh = rc.getRenderingHints(); if (rh == null) rh = new RenderingHints(null); // update the current affine transform AffineTransform at = rc.getTransform(); // This splits out the scale and applies it // prior to the Gaussian. Then after appying the gaussian // it applies the shear (rotation) and translation components. double sx = at.getScaleX(); double sy = at.getScaleY(); double shx = at.getShearX(); double shy = at.getShearY(); double tx = at.getTranslateX(); double ty = at.getTranslateY(); // The Scale is the "hypotonose" of the matrix vectors. double scaleX = Math.sqrt(sx*sx + shy*shy); double scaleY = Math.sqrt(sy*sy + shx*shx); AffineTransform srcAt; srcAt = AffineTransform.getScaleInstance(scaleX, scaleY); int radX = (int)Math.round(radiusX*scaleX); int radY = (int)Math.round(radiusY*scaleY); MorphologyOp op = null; if(radX > 0 && radY > 0){ op = new MorphologyOp(radX, radY, doDilation); } // This is the affine transform between our intermediate // coordinate space and the real device space. AffineTransform resAt; // The shear/rotation simply divides out the // common scale factor in the matrix. resAt = new AffineTransform(sx/scaleX, shy/scaleX, shx/scaleY, sy/scaleY, tx, ty); Shape aoi = rc.getAreaOfInterest(); if(aoi == null) { aoi = getBounds2D(); } Rectangle2D r = aoi.getBounds2D(); r = new Rectangle2D.Double(r.getX()-radX/scaleX, r.getY()-radY/scaleY, r.getWidth() +2*radX/scaleX, r.getHeight()+2*radY/scaleY); RenderedImage ri; ri = getSource().createRendering(new RenderContext(srcAt, r, rh)); if (ri == null) return null; CachableRed cr; cr = new RenderedImageCachableRed(ri); Shape devShape = srcAt.createTransformedShape(aoi.getBounds2D()); r = devShape.getBounds2D(); r = new Rectangle2D.Double(r.getX()-radX, r.getY()-radY, r.getWidth() +2*radX, r.getHeight()+2*radY); cr = new PadRed(cr, r.getBounds(), PadMode.ZERO_PAD, rh); // System.out.println("Src: " + cr.getBounds(rc)); ColorModel cm = ri.getColorModel(); // OK this is a bit of a cheat. We Pull the DataBuffer out of // The read-only raster that getData gives us. And use it to // build a WritableRaster. This avoids a copy of the data. Raster rr = cr.getData(); Point pt = new Point(0,0); WritableRaster wr = Raster.createWritableRaster(rr.getSampleModel(), rr.getDataBuffer(), pt); BufferedImage srcBI; srcBI = new BufferedImage(cm, wr, cm.isAlphaPremultiplied(), null); BufferedImage destBI; if(op != null){ destBI = op.filter(srcBI, null); } else{ destBI = srcBI; } final int rrMinX = cr.getMinX(); final int rrMinY = cr.getMinY(); cr = new BufferedImageCachableRed(destBI, rrMinX, rrMinY); if (!resAt.isIdentity()) cr = new AffineRed(cr, resAt, rh); // System.out.println("Res: " + cr.getBounds(rc)); return cr; }
Returns the region of input data is is required to generate outputRgn.
Params:
  • srcIndex – The source to do the dependency calculation for.
  • outputRgn – The region of output you are interested in generating dependencies for. The is given in the user coordiate system for this node.
Returns:The region of input required. This is in the user coordinate system for the source indicated by srcIndex.
/** * Returns the region of input data is is required to generate * outputRgn. * @param srcIndex The source to do the dependency calculation for. * @param outputRgn The region of output you are interested in * generating dependencies for. The is given in the user coordiate * system for this node. * @return The region of input required. This is in the user * coordinate system for the source indicated by srcIndex. */
public Shape getDependencyRegion(int srcIndex, Rectangle2D outputRgn){ // NOTE: This needs to grow the region!!! // Morphology actually needs a larger area of input than // it outputs. return super.getDependencyRegion(srcIndex, outputRgn); }
This calculates the region of output that is affected by a change in a region of input.
Params:
  • srcIndex – The input that inputRgn reflects changes in.
  • inputRgn – the region of input that has changed, used to calculate the returned shape. This is given in the user coordinate system of the source indicated by srcIndex.
Returns:The region of output that would be invalid given a change to inputRgn of the source selected by srcIndex. this is in the user coordinate system of this node.
/** * This calculates the region of output that is affected by a change * in a region of input. * @param srcIndex The input that inputRgn reflects changes in. * @param inputRgn the region of input that has changed, used to * calculate the returned shape. This is given in the user * coordinate system of the source indicated by srcIndex. * @return The region of output that would be invalid given * a change to inputRgn of the source selected by srcIndex. * this is in the user coordinate system of this node. */
public Shape getDirtyRegion(int srcIndex, Rectangle2D inputRgn){ // NOTE: This needs to grow the region!!! // Changes in the input region affect a larger area of // output than the input. return super.getDirtyRegion(srcIndex, inputRgn); } }