Example usage for Java java.awt.image ConvolveOp fields, constructors, methods, implement or subclass
The text is from its open source code.
int | EDGE_ZERO_FILL Pixels at the edge of the destination image are set to zero. |
int | EDGE_NO_OP Pixels at the edge of the source image are copied to the corresponding pixels in the destination without modification. |
ConvolveOp(Kernel kernel) Constructs a ConvolveOp given a Kernel. | |
ConvolveOp(Kernel kernel, int edgeCondition, RenderingHints hints) Constructs a ConvolveOp given a Kernel, an edge condition, and a RenderingHints object (which may be null). |
BufferedImage | filter(BufferedImage src, BufferedImage dst) Performs a convolution on BufferedImages. |
WritableRaster | filter(Raster src, WritableRaster dst) Performs a convolution on Rasters. |