Class MorphologyRable8Bit
java.lang.Object
org.apache.batik.ext.awt.image.renderable.AbstractRable
org.apache.batik.ext.awt.image.renderable.MorphologyRable8Bit
- All Implemented Interfaces:
RenderableImage, Filter, MorphologyRable
Implements a Morphology operation, where the kernel size is
defined by radius along the x and y axis.
-
Field Summary
Fields inherited from class AbstractRable
props, srcs, stampFields inherited from interface RenderableImage
HINTS_OBSERVED -
Constructor Summary
ConstructorsConstructorDescriptionMorphologyRable8Bit(Filter src, double radiusX, double radiusY, boolean doDilation) -
Method Summary
Modifier and TypeMethodDescriptionPass-through: returns the source's boundsgetDependencyRegion(int srcIndex, Rectangle2D outputRgn) Returns the region of input data is is required to generate outputRgn.getDirtyRegion(int srcIndex, Rectangle2D inputRgn) This calculates the region of output that is affected by a change in a region of input.booleanReturns whether the operation is "dilation" or not("erosion")doubleReturns the radius along the x-axis, in user space.doubleReturns the radius along the y-axis, in user space.Returns the source to be offset.voidsetDoDilation(boolean doDilation) The switch that determines if the operation is to "dilate" or "erode".voidsetRadiusX(double radiusX) The radius along the x axis, in user space.voidsetRadiusY(double radiusY) The radius along the y axis, in user space.voidSets the source to be offset.Methods inherited from class AbstractRable
createDefaultRendering, createScaledRendering, getHeight, getMinX, getMinY, getProperty, getPropertyNames, getSources, getTimeStamp, getWidth, init, init, init, init, isDynamic, touchMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Filter
getTimeStampMethods inherited from interface RenderableImage
createDefaultRendering, createScaledRendering, getHeight, getMinX, getMinY, getProperty, getPropertyNames, getSources, getWidth, isDynamic
-
Constructor Details
-
MorphologyRable8Bit
-
-
Method Details
-
getSource
Returns the source to be offset.- Specified by:
getSourcein interfaceMorphologyRable
-
setSource
Sets the source to be offset.- Specified by:
setSourcein interfaceMorphologyRable- Parameters:
src- image to offset.
-
getBounds2D
Pass-through: returns the source's bounds- Specified by:
getBounds2Din interfaceFilter- Overrides:
getBounds2Din classAbstractRable
-
setRadiusX
public void setRadiusX(double radiusX) The radius along the x axis, in user space.- Specified by:
setRadiusXin interfaceMorphologyRable- Parameters:
radiusX- should be greater than zero.
-
setRadiusY
public void setRadiusY(double radiusY) The radius along the y axis, in user space.- Specified by:
setRadiusYin interfaceMorphologyRable- Parameters:
radiusY- should be greater than zero.
-
setDoDilation
public void setDoDilation(boolean doDilation) The switch that determines if the operation is to "dilate" or "erode".- Specified by:
setDoDilationin interfaceMorphologyRable- Parameters:
doDilation- do "dilation" when true and "erosion" when false
-
getDoDilation
public boolean getDoDilation()Returns whether the operation is "dilation" or not("erosion")- Specified by:
getDoDilationin interfaceMorphologyRable
-
getRadiusX
public double getRadiusX()Returns the radius along the x-axis, in user space.- Specified by:
getRadiusXin interfaceMorphologyRable
-
getRadiusY
public double getRadiusY()Returns the radius along the y-axis, in user space.- Specified by:
getRadiusYin interfaceMorphologyRable
-
createRendering
- Specified by:
createRenderingin interfaceRenderableImage
-
getDependencyRegion
Returns the region of input data is is required to generate outputRgn.- Specified by:
getDependencyRegionin interfaceFilter- Overrides:
getDependencyRegionin classAbstractRable- Parameters:
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.
-
getDirtyRegion
This calculates the region of output that is affected by a change in a region of input.- Specified by:
getDirtyRegionin interfaceFilter- Overrides:
getDirtyRegionin classAbstractRable- Parameters:
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.
-