标签:strong this arp str image amp col ima float
This example demonstrates a 3x3 kernel that sharpens an image.
Kernel kernel = new Kernel(3, 3,
new float[] {
-1, -1, -1,
-1, 9, -1,
-1, -1, -1});
BufferedImageOp op = new ConvolveOp(kernel);
bufferedImage = op.filter(bufferedImage, null);
| Related Examples |
标签:strong this arp str image amp col ima float
原文地址:https://www.cnblogs.com/borter/p/9575568.html