DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Java - Erode
// JAI Filter erode
public RenderedImage erode(BufferedImage img)
{
KernelJAI kernel = new KernelJAI(7, 7, new float[]{
0, 0, 0, 0, 0, 0, 0,
0, 1, 1, 1, 1, 1, 0,
0, 1, 1, 1, 1, 1, 0,
0, 1, 1, 1, 1, 1, 0,
0, 1, 1, 1, 1, 1, 0,
0, 1, 1, 1, 1, 1, 0,
0, 0, 0, 0, 0, 0, 0
});
ParameterBlock pb = new ParameterBlock();
pb.addSource(img);
pb.add(kernel);
return JAI.create("erode", pb);
}





