Java - Dilate3
DZone's Guide to
Java - Dilate3
Join the DZone community and get the full member experience.
Join For Free// pixel before the filter
// |--|--|--|
// | | | |
// |--|--|--|
// | | *| |
// |--|--|--|
// | | | |
// |--|--|--|
// pixel after the filter
// |--|--|--|
// | *| *| *|
// |--|--|--|
// | *| *| *|
// |--|--|--|
// | *| *| *|
// |--|--|--|
public BufferedImage dilate3(BufferedImage bi)
{
BufferedImage buff = new BufferedImage(bi.getWidth(), bi.getHeight(), bi.getType());
Kernel kernel = new Kernel(3, 3, new float[] {
1f, 1f, 1f,
1f, 1f, 1f,
1f, 1f, 1f
});
ConvolveOp op = new ConvolveOp(kernel);
op.filter(bi, buff);
return buff;
}
Topics:
Opinions expressed by DZone contributors are their own.
{{ parent.title || parent.header.title}}
{{ parent.tldr }}
{{ parent.linkDescription }}
{{ parent.urlSource.name }}