org.apache.batik.ext.awt.image.renderable
public interface MorphologyRable extends Filter
Method Summary | |
---|---|
boolean | getDoDilation()
Returns whether the operation is "dilation" or not("erosion") |
double | getRadiusX()
Returns the radius along the x-axis, in user space. |
double | getRadiusY()
Returns the radius along the y-axis, in user space. |
Filter | getSource()
Returns the source to be offset. |
void | setDoDilation(boolean doDilation)
The switch that determines if the operation
is to "dilate" or "erode". |
void | setRadiusX(double radiusX)
The radius along the x axis, in user space. |
void | setRadiusY(double radiusY)
The radius along the y axis, in user space. |
void | setSource(Filter src)
Sets the source to be offset. |
Parameters: doDilation do "dilation" when true and "erosion" when false
Parameters: radiusX should be greater than zero.
Parameters: radiusY should be greater than zero.
Parameters: src image to offset.